disable Kibana by default, Cerebro optionally

This commit is contained in:
2021-02-21 17:09:06 +01:00
parent 271d63babe
commit dc2fcd823c
2 changed files with 12 additions and 0 deletions

View File

@@ -60,6 +60,7 @@ services:
# Kibana : https://www.elastic.co/guide/en/kibana/6.8/index.html
kibana:
image: docker.elastic.co/kibana/kibana:7.11.1
entrypoint: ["echo", "Service Kibana disabled"]
env_file:
- kibana.env
depends_on:
@@ -68,6 +69,7 @@ services:
- 5601:5601
cerebro:
image: lmenezes/cerebro
# entrypoint: ["echo", "Service cerebro disabled"]
ports:
- 9001:9000
links:

View File

@@ -257,4 +257,14 @@ Configure according your needs, I propose following Settings:
| Datebase Top Talker Storage | 365d | |
# Disable Cerebro.
Since Cerebro is mainly used for applying a custom Index Template, we don't need it in our daily routine and we can disable it. Edit your docker-compose.yml and remove the comment in the service block for Cerebro:
```
cerebro:
image: lmenezes/cerebro
entrypoint: ["echo", "Service cerebro disabled"]
```
That should do it. Check your DPI Dashboard and enjoy :)