run elasticsearch in single-node mode
create container dependencies for monitoring stack
This commit is contained in:
parent
e4fec5dd4e
commit
ccd1343798
1 changed files with 7 additions and 1 deletions
|
@ -50,7 +50,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- node.name=es01
|
- node.name=es01
|
||||||
- cluster.name=shoarma
|
- cluster.name=shoarma
|
||||||
- cluster.initial_master_nodes=es01
|
- discovery.type=single-node
|
||||||
- bootstrap.memory_lock=true
|
- bootstrap.memory_lock=true
|
||||||
- xpack.security.enabled=false
|
- xpack.security.enabled=false
|
||||||
- xpack.security.http.ssl.enabled=false
|
- xpack.security.http.ssl.enabled=false
|
||||||
|
@ -79,6 +79,8 @@ services:
|
||||||
|
|
||||||
grafana:
|
grafana:
|
||||||
image: grafana/grafana-oss
|
image: grafana/grafana-oss
|
||||||
|
depends_on:
|
||||||
|
- elasticsearch
|
||||||
networks:
|
networks:
|
||||||
- traefik
|
- traefik
|
||||||
- grafana
|
- grafana
|
||||||
|
@ -104,6 +106,8 @@ services:
|
||||||
|
|
||||||
grafana-ntfy:
|
grafana-ntfy:
|
||||||
image: kittyandrew/grafana-to-ntfy:master
|
image: kittyandrew/grafana-to-ntfy:master
|
||||||
|
depends_on:
|
||||||
|
- grafana
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
networks:
|
networks:
|
||||||
|
@ -119,6 +123,8 @@ services:
|
||||||
|
|
||||||
fluentd:
|
fluentd:
|
||||||
image: git.kun.is/pim/fluentd:1.0.1
|
image: git.kun.is/pim/fluentd:1.0.1
|
||||||
|
depends_on:
|
||||||
|
- elasticsearch
|
||||||
ports:
|
ports:
|
||||||
- {{ fluent_forward_port }}:24224
|
- {{ fluent_forward_port }}:24224
|
||||||
configs:
|
configs:
|
||||||
|
|
Reference in a new issue