forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nimbus-grafana.yml
47 lines (47 loc) · 1.04 KB
/
nimbus-grafana.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
version: "3.4"
services:
beacon:
expose:
- 8008/tcp
command:
- --metrics
- --metrics-port=8008
- --metrics-address=0.0.0.0
prometheus:
restart: "${RESTART}"
build:
context: ./prometheus
image: prometheus
volumes:
- prom-data:/prometheus
environment:
- CLIENT=${COMPOSE_FILE}
expose:
- 9090/tcp
entrypoint: choose-config.sh
command: ["/bin/prometheus", "--storage.tsdb.path=/prometheus", "--web.console.libraries=/usr/share/prometheus/console_libraries", "--web.console.templates=/usr/share/prometheus/consoles"]
depends_on:
- beacon
- node-exporter
node-exporter:
restart: "${RESTART}"
image: prom/node-exporter
expose:
- 9100/tcp
grafana:
restart: "${RESTART}"
build:
context: ./grafana
image: grafana
volumes:
- grafana-data:/var/lib/grafana
depends_on:
- prometheus
ports:
- ${GRAFANA_PORT}:3000/tcp
eth2:
depends_on:
- grafana
volumes:
grafana-data:
prom-data: