At this point in time, we've decided to retire the docker-kibana project and place it into maintenance mode, and Trueaccord will no longer be managing and maintaining this project.
We'd like to extend a huge thanks and our gratitude to all of the contributors to this project that have helped us to get this project to where it is today and for accompanying us on this journey!
If you run into any issues with this project that you believe require attention or wish to enhance it, feel free to fork this repository however we may decide to delete this repository at a future point in time.
This repository contains a Dockerfile for the latest release of Kibana, which is currently version 4 beta.
-
Install Docker.
-
Download automated build from public Docker Hub Registry:
docker pull eliotk/docker-kibana
(alternatively, you can build an image from the Dockerfile:
docker build -t="eliotk/docker-kibana" github.com/eliotk/docker-kibana
)
To start a Kibana container, run:
docker run -d -p 5601:5601 eliotk/docker-kibana
Kibana needs to use the 1.4 version of elasticsearch.
To run the Kibana container with a linked version of elasticsearch 1.4, first run an elasticsearch Docker container named "elasticsearch".
Pull the dockerfile/elasticsearch image if you don't have the latest 1.4 version: docker pull dockerfile/elasticsearch
docker run -d -p 9200:9200 -p 9300:9300 --name elasticsearch dockerfile/elasticsearch
Then run a Kibana container with a link to the elasticsearch container:
docker run -d -P --name kibana -p 5601:5601 --link elasticsearch:elasticsearch eliotk/docker-kibana
After few seconds, open http://<host>:5601
to see the result.