-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
83 lines (75 loc) · 1.83 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
version: '3'
volumes:
prometheus-data:
driver: local
grafana-data:
driver: local
services:
prometheus:
image: prom/prometheus:latest
container_name: prometheus
# ports:
# - "9090:9090"
volumes:
- ./config:/etc/prometheus
- prometheus-data:/prometheus
restart: unless-stopped
networks:
- grafana_net
command:
- "--config.file=/etc/prometheus/prometheus.yml"
grafana:
image: grafana/grafana-oss:latest
container_name: grafana
ports:
- "127.0.0.1:9191:3000"
volumes:
- grafana-data:/var/lib/grafana
restart: unless-stopped
networks:
- grafana_net
cadvisor:
image: gcr.io/cadvisor/cadvisor:latest
container_name: cadvisor
# ports:
# - "8080:8080"
devices:
- /dev/kmsg:/dev/kmsg
volumes:
- /:/rootfs:ro
- /var/run:/var/run:ro
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
- /dev/disk/:/dev/disk:ro
networks:
- grafana_net
node_exporter:
image: quay.io/prometheus/node-exporter:latest
container_name: node_exporter
command:
- '--path.rootfs=/host'
pid: host
restart: unless-stopped
networks:
- grafana_net
volumes:
- '/:/host:ro,rslave'
blackbox:
image: prom/blackbox-exporter:latest
container_name: blackbox
volumes:
- ./config/blackbox.yml:/etc/blackbox_exporter/config.yml
restart: unless-stopped
networks:
- grafana_net
json_exporter:
image: quay.io/prometheuscommunity/json-exporter:latest
container_name: json_exporter
volumes:
- ./config/json_exporter.yml:/config.yml
restart: unless-stopped
networks:
- grafana_net
networks:
grafana_net:
name: grafana_net