-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
80 lines (79 loc) · 2 KB
/
docker-compose.yml
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
76
77
78
79
80
services:
app:
image: ${DOCKER_IMAGE:-gitea.hostedapp.org/broadcast/broadcast:latest}
platform: linux/${TARGETARCH:-amd64}
pull_policy: always
container_name: app
restart: always
env_file:
- /opt/broadcast/app/.env
volumes:
- /opt/broadcast/app/storage:/rails/storage
- /opt/broadcast/app/uploads:/rails/uploads
- /opt/broadcast/app/triggers:/rails/triggers
- /opt/broadcast/app/monitor:/rails/monitor
- /opt/broadcast/ssl:/rails/ssl
ports:
- "80:80"
- "443:443"
networks:
- broadcast-network
depends_on:
postgres:
condition: service_healthy
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
job:
image: ${DOCKER_IMAGE:-gitea.hostedapp.org/broadcast/broadcast:latest}
platform: linux/${TARGETARCH:-amd64}
pull_policy: always
container_name: job
restart: always
env_file:
- /opt/broadcast/app/.env
volumes:
- /opt/broadcast/app/storage:/rails/storage
- /opt/broadcast/app/uploads:/rails/uploads
networks:
- broadcast-network
depends_on:
postgres:
condition: service_healthy
command:
- "bin/jobs"
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
postgres:
image: postgres:17-alpine
container_name: postgres
restart: always
env_file:
- /opt/broadcast/db/.env
volumes:
- /opt/broadcast/db/backups:/backups
- /opt/broadcast/db/postgres-data:/var/lib/postgresql/data
- /opt/broadcast/db/init-scripts:/docker-entrypoint-initdb.d
ports:
- "127.0.0.1:5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U broadcast"]
interval: 10s
timeout: 5s
retries: 10
start_period: 30s
networks:
- broadcast-network
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
broadcast-network:
driver: bridge