-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.dev.reference.yaml
More file actions
71 lines (70 loc) · 1.7 KB
/
Copy pathcompose.dev.reference.yaml
File metadata and controls
71 lines (70 loc) · 1.7 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
# Reference: currently deployed upstream dev docker compose config
# Use this to inform updates to compose.dev.yaml
networks:
dev-fragforce-org: {}
swag_bridge: {}
services:
web:
image: ghcr.io/fragforce/fragforce-dev-web:dev
container_name: dev-web
ports:
- "10.22.195.4:8001:8000"
environment:
TZ: "Etc/UTC"
DJANGO_LOG_LEVEL: "DEBUG"
command: [ "gunicorn", "--log-level", "debug", "--bind=0.0.0.0:8000", "--forwarded-allow-ips", "*", "--proxy-allow-from", "*", "fforg.wsgi" ]
env_file: ./.env
depends_on:
- redis
- db
networks:
- dev-fragforce-org
- swag_bridge
labels:
com.centurylinklabs.watchtower.enable: true
beat:
image: ghcr.io/fragforce/fragforce-dev-beat:dev
container_name: dev-beat
env_file: ./.env
networks:
- dev-fragforce-org
depends_on:
- redis
- db
labels:
com.centurylinklabs.watchtower.enable: true
worker:
image: ghcr.io/fragforce/fragforce-dev-worker:dev
container_name: dev-worker
env_file: ./.env
networks:
- dev-fragforce-org
depends_on:
- redis
- db
labels:
com.centurylinklabs.watchtower.enable: true
redis:
container_name: dev-redis
image: redis
environment:
TZ: "Etc/UTC"
networks:
- dev-fragforce-org
volumes:
- ./redis/data:/data
labels:
com.centurylinklabs.watchtower.enable: true
db:
container_name: dev-db
image: postgres:14.8
env_file: .env.postgres
volumes:
- ./postgres/data:/var/lib/postgresql/data
- .:/dump
expose:
- 5432
networks:
- dev-fragforce-org
labels:
com.centurylinklabs.watchtower.enable: true