Add Kibana Container (#993)

* Add Kibana Container

* Add Kibana Port to env-example
This commit is contained in:
Mark Davidson 2017-06-03 05:54:37 +01:00 committed by Bo-Yi Wu
parent 18b6c1b907
commit 0561199914
3 changed files with 20 additions and 0 deletions

View File

@ -481,6 +481,19 @@ services:
- frontend
- backend
### Kibana Container #######################################
kibana:
build: ./kibana
ports:
- "${KIBANA_HTTP_PORT}:5601"
depends_on:
- elasticsearch
networks:
- frontend
- backend
### Certbot Container ##################################
certbot:

View File

@ -137,6 +137,10 @@ RABBITMQ_DEFAULT_PASS=guest
ELASTICSEARCH_HOST_HTTP_PORT=9200
ELASTICSEARCH_HOST_TRANSPORT_PORT=9300
### KIBANA #############################################################################################################
KIBANA_HTTP_PORT=5601
### MEMCACHED ##########################################################################################################
MEMCACHED_HOST_PORT=11211

3
kibana/Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM kibana:latest
EXPOSE 5601