diff --git a/docker-compose.yml b/docker-compose.yml index 38603d66..7e3a70f1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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: diff --git a/env-example b/env-example index 13e495e8..f8ca6509 100644 --- a/env-example +++ b/env-example @@ -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 diff --git a/kibana/Dockerfile b/kibana/Dockerfile new file mode 100644 index 00000000..f90cebee --- /dev/null +++ b/kibana/Dockerfile @@ -0,0 +1,3 @@ +FROM kibana:latest + +EXPOSE 5601 \ No newline at end of file