-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
68 lines (62 loc) · 1.19 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
version: "3"
services:
db:
image: postgis/postgis:15-3.4-alpine
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
ports:
- "5432:5432"
volumes:
- .:/code
restart: unless-stopped
web:
image: nginx:alpine
env_file:
- secrets.dev.env
ports:
- "8000:8000"
volumes:
- ./nginx/local:/etc/nginx/templates/
- ./static:/code/static
depends_on:
- app
restart: unless-stopped
app: &app
build:
context: .
args:
- ENVIRONMENT=dev
env_file:
- secrets.dev.env
command: bash run_app.sh
volumes:
- .:/code
- ./../.firebase/rosak-7223b-firebase-adminsdk-8hcki-f2e0ee7994.json:/google-application-credential.json
expose:
- "8001"
depends_on:
- db
- redis
restart: unless-stopped
redis:
image: redis:7
ports:
- "6379:6379"
restart: unless-stopped
celeryworker:
<<: *app
depends_on:
- db
- redis
command: bash run_celery.sh
celerybeat:
<<: *app
volumes:
- .:/code
env_file:
- secrets.dev.env
depends_on:
- redis
- db
ports: []
command: bash run_celery_beat.sh