1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-13 01:36:20 +00:00

add readme

This commit is contained in:
Richard Lister
2014-12-16 23:53:55 -05:00
parent bfb047d8dd
commit e5f570c9b6

26
kibana4/README.md Normal file
View File

@@ -0,0 +1,26 @@
# kibana4
[Kibana4](http://www.elasticsearch.org/overview/kibana/) that can be
configured using environment variables.
## Usage
Download and view the default config file:
```
docker run rlister/kibana4 cat config/kibana.yml
```
Settings can be overridden using environment variables of the same
name, but uppercased:
For example, to link and connect to an elasticsearch container (using
the linked `/etc/hosts` entry):
```
docker run -d --name elasticsearch dockerfile/elasticsearch
docker run -d --name kibana4 --link elasticsearch:elasticsearch -e ELASTICSEARCH=http://elasticsearch:9200 -p 5601:5601 rlister/kibana4
```
You should now be able to use your dashboard at
`http://localhost:5601`.