-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
62 lines (56 loc) · 1.31 KB
/
docker-compose.yaml
File metadata and controls
62 lines (56 loc) · 1.31 KB
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
version: "3"
services:
nrpimonitor:
image: ghcr.io/zetroot/nrpimonitor:v0.2.5
platform: linux/arm64
restart: always
depends_on:
seq:
condition: service_started
ports:
- 80:80
container_name: nrpimon
environment:
- ConnectionStrings__default=Data Source=/opt/data/app.db
volumes:
- ./nrpimondb/:/opt/data/
prometheus:
command:
- --config.file=/etc/prometheus/prometheus.yml
- --storage.tsdb.path=/data/prometheus
image: prom/prometheus:latest
user: root
container_name: prometheus
platform: linux/arm64
restart: always
ports:
- "9090:9090"
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus-data:/data/prometheus
grafana:
image: grafana/grafana:latest
container_name: grafana
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=foobar
- GF_USERS_ALLOW_SIGN_UP=false
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- grafana-data:/var/lib/grafana
seq:
image: datalust/seq:latest
restart: unless-stopped
volumes:
- seq-data:/data
ports:
- "80:80"
- "5341:5341"
environment:
- ACCEPT_EULA=Y
volumes:
grafana-data:
prometheus-data:
seq-data: