-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
138 lines (128 loc) · 3.06 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
version: "3"
volumes:
prometheus_data: {}
grafana_data: {}
networks:
monitor_network:
services:
prometheus:
image: prom/prometheus
depends_on:
- cadvisor
volumes:
- prometheus_data:/prometheus
- ./prometheus/:/etc/prometheus
networks:
- monitor_network
ports:
- 9090:9090
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
- '--web.console.templates=/usr/share/prometheus/consoles'
- '--web.enable-lifecycle'
- '--web.enable-admin-api'
deploy:
replicas: 1
# resources:
# limits:
# cpus: "0.1"
# memory: 50M
restart_policy:
condition: on-failure
placement:
constraints:
- node.role==manager
resources:
limits:
memory: 512M
reservations:
memory: 128M
alertmanager:
image: prom/alertmanager
volumes:
- ./alertmanager/:/etc/alertmanager/
networks:
- monitor_network
ports:
- 9093:9093
command:
- '--config.file=/etc/alertmanager/config.yml'
- '--storage.path=/alertmanager'
deploy:
replicas: 1
restart_policy:
condition: on-failure
placement:
constraints:
- node.role==manager
resources:
limits:
memory: 512M
reservations:
memory: 128M
dockerd-exporter:
image: stefanprodan/caddy
cadvisor:
image: google/cadvisor
volumes:
- /:/rootfs:ro
- /var/run:/var/run:rw
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
networks:
- monitor_network
ports:
- 8181:8080
deploy:
mode: global
restart_policy:
condition: on-failure
resources:
limits:
memory: 128M
reservations:
memory: 64M
# node-exporter:
# image: prom/node-exporter
# volumes:
# - /proc:/host/proc:ro
# - /sys:/host/sys:ro
# - /:/rootfs:ro
# # - /etc/hostname:/etc/host_hostname
# networks:
# - monitor_network
# ports:
# - 9100:9100
# command:
# - '--path.procfs=/host/proc'
# - '--path.sysfs=/host/sys'
# - --collector.filesystem.ignored-mount-points
# - "^/(sys|proc|dev|host|etc|rootfs/var/lib/docker/containers|rootfs/var/lib/docker/overlay2|rootfs/run/docker/netns|rootfs/var/lib/docker/aufs)($$|/)"
# deploy:
# # replicas: 1
# mode: global
# restart_policy:
# condition: on-failure
grafana:
image: grafana/grafana
depends_on:
- prometheus
networks:
- monitor_network
ports:
- 3000:3000
volumes:
- grafana_data:/var/lib/grafana
- ./grafana/provisioning/:/etc/grafana/provisioning/
env_file:
- ./grafana/config.monitoring
deploy:
restart_policy:
condition: on-failure
resources:
limits:
memory: 128M
reservations:
memory: 64M