This repository was archived by the owner on Apr 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
67 lines (60 loc) · 1.58 KB
/
Copy pathdocker-compose.yml
File metadata and controls
67 lines (60 loc) · 1.58 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
63
64
65
66
67
version: '3.8'
services:
traefik:
image: traefik:latest
restart: always
command:
- '--providers.docker=true'
- '--entrypoints.web.address=:80'
- '--api.insecure=true'
ports:
- '80:80'
- '8080:8080'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- relaynet
relay:
image: ghcr.io/gmod-integration/webhook_relay:latest
restart: always
env_file: .env
deploy:
replicas: 4
labels:
- 'traefik.http.routers.relay.rule=PathPrefix(`/`)'
- 'traefik.http.services.relay.loadbalancer.server.port=3000'
networks:
- relaynet
watchtower:
image: containrrr/watchtower
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /home/linventif/.docker:/config/.docker
environment:
- DOCKER_CONFIG=/config/.docker
command: --interval 30 --cleanup
networks:
- relaynet
prometheus:
image: prom/prometheus
restart: always
ports:
- '9090:9090'
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
networks:
- relaynet
grafana:
image: grafana/grafana
restart: always
ports:
- '3001:3000'
volumes:
- grafana-storage:/var/lib/grafana
networks:
- relaynet
volumes:
grafana-storage:
networks:
relaynet: