forked from lambdaclass/lambda_ethereum_consensus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
103 lines (96 loc) · 2.41 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
version: '3'
name: 'lambda-ethereum-consensus-grafana'
services:
prometheus:
image: prom/prometheus
container_name: prometheus
hostname: prometheus
volumes:
# prometheus configuration
- ./prometheus:/etc/prometheus
# prometheus data
- prometheus-data:/prometheus
command: --web.enable-lifecycle --config.file=/etc/prometheus/prometheus.yml
networks:
grafana-prometheus:
aliases:
- prometheus
extra_hosts:
- "host.docker.internal:host-gateway"
grafana:
image: grafana/grafana
container_name: grafana
ports:
- "3000:3000"
volumes:
# grafana configuration
- ./grafana/provisioning:/etc/grafana/provisioning
# grafana data
- grafana-data:/var/lib/grafana
environment:
# WARNING: use this for same-machine access ONLY
GF_AUTH_ANONYMOUS_ENABLED: "true"
GF_AUTH_DISABLE_LOGIN_FORM: "true"
GF_AUTH_ANONYMOUS_ORG_ROLE: "Admin"
networks:
grafana-prometheus:
aliases:
- grafana
grafana-loki:
aliases:
- grafana
# Since the Loki containers are running as user 10001 and the mounted data volume is owned by root,
# Loki would not have permissions to create the directories.
# Therefore the init container changes permissions of the mounted directory.
loki-init:
image: &lokiImage grafana/loki:2.9.2
user: root
entrypoint:
- "chown"
- "10001:10001"
- "/tmp/loki"
volumes:
- loki-data:/tmp/loki
loki:
image: *lokiImage
container_name: loki
volumes:
# loki configuration
- ./loki:/etc/loki
# loki data
- loki-data:/tmp/loki
command: --config.file=/etc/loki/loki.yml
networks:
grafana-loki:
aliases:
- loki
loki-promtail:
aliases:
- loki
promtail:
image: grafana/promtail
container_name: promtail
volumes:
# promtail configuration
- ./promtail:/etc/promtail
# logs to scrape
- ../logs:/var/log/consensus
# promtail data
- promtail-data:/tmp/promtail
command: --config.file=/etc/promtail/promtail.yml
networks:
loki-promtail:
aliases:
- promtail
networks:
grafana-prometheus:
driver: bridge
grafana-loki:
driver: bridge
loki-promtail:
driver: bridge
volumes:
prometheus-data:
grafana-data:
loki-data:
promtail-data: