-
Notifications
You must be signed in to change notification settings - Fork 186
/
docker-compose-prod.yml
79 lines (70 loc) · 1.6 KB
/
docker-compose-prod.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
version: "3"
services:
experimenter:
image: experimenter:deploy
env_file: .env
environment:
- DEBUG=True
- USE_YARN_DEV=False
stdin_open: true
tty: true
depends_on:
- db
- redis
- kinto
ports:
- "7001:7001"
volumes:
- media_volume:/experimenter/experimenter/media
command: bash -c "python bin/setup_kinto.py;/experimenter/bin/wait-for-it.sh db:5432 -- python manage.py collectstatic --noinput&&gunicorn -w 4 -b 0.0.0.0:7001 experimenter.wsgi"
worker:
image: experimenter:deploy
env_file: .env
depends_on:
- db
- redis
command: bash -c "/experimenter/bin/wait-for-it.sh db:5432 -- celery -A experimenter worker -l DEBUG"
beat:
image: experimenter:deploy
env_file: .env
depends_on:
- db
- redis
command: bash -c "/experimenter/bin/wait-for-it.sh db:5432 -- celery -A experimenter beat -l DEBUG"
nginx:
build: ./nginx
env_file: .env
depends_on:
- experimenter
ports:
- "443:443"
db:
restart: always
image: postgres:14.8
environment:
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
volumes:
- db_volume:/var/lib/postgresql
redis:
image: redis:6.2.6
ports:
- "6379:6379"
kinto:
image: mozilla/remote-settings:30.1.1
environment:
KINTO_INI: /etc/kinto.ini
ports:
- "8888:8888"
depends_on:
- autograph
volumes:
- ./kinto/server.ini:/etc/kinto.ini
autograph:
image: mozilla/autograph:4.1.1
ports:
- "8000:8000"
volumes:
db_volume:
media_volume: