forked from danopstech/starlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
55 lines (51 loc) · 1.29 KB
/
docker-compose.yaml
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
version: "3.3"
services:
starlink_exporter:
image: "ghcr.io/danopstech/starlink_exporter:latest"
restart: always
ports:
- "9817:9817"
speedtest_exporter:
image: "ghcr.io/danopstech/speedtest_exporter:latest"
restart: always
ports:
- "9092:9090"
blackbox:
image: "ghcr.io/danopstech/blackbox_exporter:latest"
restart: always
user: "root"
ports:
- "9115:9115"
volumes:
- type: bind
source: ./config/blackbox/config.yaml
target: /etc/blackbox_exporter/config.yml
prometheus:
image: "ghcr.io/danopstech/prometheus:latest"
restart: always
user: "root"
ports:
- "9090:9090"
volumes:
- type: bind
source: ./config/prometheus/prometheus.yml
target: /etc/prometheus/prometheus.yml
- type: bind
source: ./data/prometheus
target: /prometheus
grafana:
image: "ghcr.io/danopstech/grafana:latest"
restart: always
user: "root"
ports:
- "3000:3000"
environment:
- GF_INSTALL_PLUGINS=ae3e-plotly-panel
- GF_LOG_CONSOLE_LEVEL=warn
volumes:
- type: bind
source: ./data/grafana
target: /var/lib/grafana
- type: bind
source: ./config/grafana/provisioning
target: /etc/grafana/provisioning/