Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

Latest commit

 

History

History
28 lines (22 loc) · 930 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 930 Bytes

Quickbana

Run quickly a Kibana instance through Docker over Fedora, for testing purposes.

  • Get the code:
git clone https://github.com/IBMResearch/quickbana
cd quickbana
  • Build and run the image
sudo docker build -t quickbana .
# We redirect our local 8888 port to the Kibana's container one for convenience.
sudo docker run --name quickbana -p 8888:5601 -t quickbana
# Other useful commands.
sudo docker inspect quickbana | grep IPAddress # get the IP of the container
sudo docker stop quickbana # stop the container
sudo docker rm quickbana # remove the container
sudo docker attach quickbana # start a ssh session
sudo docker ps # list the container
sudo docker images # list the images
sudo docker rmi quickbana # remove the image