-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
75 lines (66 loc) · 1.83 KB
/
compose.yml
File metadata and controls
75 lines (66 loc) · 1.83 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
68
69
70
71
72
73
74
75
services:
scheduler_backend:
image: ghcr.io/moda20/scheduler_backend:latest
#image: ghcr.io/moda20/scheduler_backend:dev for faster but unstable release
container_name: scheduler_backend
#restart: always
env_file:
- .env
volumes:
- ./:/usr/src/app/src/jobs
- ./logs:/usr/src/app/src/logs/
- ./outputs:/usr/src/app/src/outputs/
ports:
- "8080:8080"
mysql:
image: mysql
restart: always
environment:
- MYSQL_ROOT_PASSWORD=root # the db password is just a starter password and should not be used in production
ports:
- "3306:3306/tcp"
volumes:
- mysql:/var/lib/mysql
loki:
image: grafana/loki:latest
ports:
- 9001:3100
volumes:
- ./loki/loki-config.yaml:/etc/loki/loki-config.yaml # the loki configuration is just a starter configuration and should not be used in production
- ./loki/data:/loki
environment:
- PGID=0
- PUID=0
restart: unless-stopped
scheduler_ui:
image: ghcr.io/moda20/scheduler_ui:latest
#image: ghcr.io/moda20/scheduler_ui:dev for faster but unstable release
restart: unless-stopped
container_name: scheduler_ui
ports:
- "9002:80"
gotify:
image: gotify/server
ports:
- "9004:80"
environment:
GOTIFY_DEFAULTUSER_PASS: 'admin'
volumes:
- './gotify_data:/app/data'
# ntfy if it will be used as a default notification service : official docs https://docs.ntfy.sh/install/
ntfy:
image: binwiederhier/ntfy
container_name: ntfy
command:
- serve
environment:
- TZ=UTC # optional: set desired timezone
volumes:
- ./cache/ntfy:/var/cache/ntfy
- ./ntfy:/etc/ntfy
ports:
- "9005:80"
# browserless: was removed as it's an unnecessary dependency
volumes:
mysql:
driver: local