-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (42 loc) · 895 Bytes
/
docker-compose.yml
File metadata and controls
47 lines (42 loc) · 895 Bytes
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.8"
services:
prometheus:
image: prom/prometheus
container_name: prometheus
volumes:
- ./prometheus:/etc/prometheus
ports:
- "9090:9090"
networks:
- monitor-net
restart: unless-stopped
blackbox-exporter:
image: prom/blackbox-exporter
container_name: blackbox-exporter
volumes:
- ./blackbox:/etc/blackbox_exporter
ports:
- "9115:9115"
networks:
- monitor-net
restart: unless-stopped
alertmanager:
image: prom/alertmanager
container_name: alertmanager
volumes:
- ./alertmanager:/etc/alertmanager
ports:
- "9093:9093"
networks:
- monitor-net
restart: unless-stopped
grafana:
image: grafana/grafana
container_name: grafana
ports:
- "3005:3000"
networks:
- monitor-net
restart: unless-stopped
networks:
monitor-net: