dperson/kibana
Kibana docker container
Kibana allows you to see the value in your data
When started Kibana container will listen on port 5601
sudo docker run -it -d dperson/kibana
sudo docker run -it --rm dperson/kibana -h
Usage: kibana.sh [-opt] [command]
Options (fields in '[]' are optional, '<>' are required):
-h This help
-t "" Configure timezone
possible arg: "[timezone]" - zoneinfo timezone for container
The 'command' (if provided and valid) will be run instead of kibana
ENVIRONMENT VARIABLES
TZ
- As above, configure the zoneinfo timezone, IE EST5EDT
USERID
- Set the UID for the app userGROUPID
- Set the GID for the app userELASTICSEARCH
- URL for elasticsearch backendKIBANA_INDEX
- Index nameDEFAULT_APP_ID
- Default App IDTIMEOUT
- Timeout for elasticsearch connectionSHARD_TIME
- Shard timeoutVERIFY_SSL
- Verify SSLAny of the commands can be run at creation with docker run
or later with
docker exec -it kibana kibana.sh
(as of version 1.3 of docker).
sudo docker run -it -p 5601:5601 -d dperson/kibana -t EST5EDT
OR using environment variables
sudo docker run -it -p 5601:5601 -e TZ=EST5EDT -d dperson/kibana
Will get you the same settings as
sudo docker run -it --name kibana -p 5601:5601 -d dperson/kibana
sudo docker exec -it kibana kibana.sh -t EST5EDT ls -AlF /etc/localtime
sudo docker restart kibana
If you wish to adapt the default configuration, use something like the following to copy it from a running container:
sudo docker cp es:/opt/kibana/config /some/path
You can use the modified configuration with:
sudo docker run -it --name es -p 5601:5601 \
-v /some/path:/opt/kibana/config:ro -d dperson/kibana
If you have any problems with or questions about this image, please contact me through a GitHub issue.
docker pull dperson/kibana