forked from mozilla/experimenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
112 lines (101 loc) · 2.47 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
version: "3"
services:
app:
image: app:dev
env_file: .env
stdin_open: true
tty: true
links:
- db
- redis
- kinto
ports:
- "7001:7001"
volumes:
- ./app:/app
- /app/experimenter/legacy-ui/core/.cache/
- /app/experimenter/legacy-ui/core/node_modules/
- /app/experimenter/nimbus-ui/node_modules/
- /app/experimenter/served/
- /app/node_modules/
command: bash -c "/app/bin/wait-for-it.sh kinto:8888 -- python bin/setup_kinto.py;/app/bin/wait-for-it.sh db:5432 -- python /app/manage.py runserver 0:7001"
yarn-nimbus-ui:
image: app:dev
env_file: .env
tty: true
ports:
- "3000:3000"
volumes:
- ./app:/app
- /app/experimenter/legacy-ui/core/.cache/
- /app/experimenter/legacy-ui/core/node_modules/
- /app/experimenter/nimbus-ui/node_modules/
- /app/experimenter/served/
- /app/node_modules/
command: bash -c "FORCE_COLOR=true yarn workspace @experimenter/nimbus-ui start | cat"
yarn-core:
image: app:dev
env_file: .env
tty: true
volumes:
- ./app:/app
- /app/experimenter/legacy-ui/core/.cache/
- /app/experimenter/legacy-ui/core/node_modules/
- /app/experimenter/nimbus-ui/node_modules/
- /app/experimenter/served/
- /app/node_modules/
command: bash -c "yarn workspace @experimenter/core watch"
worker:
image: app:dev
env_file: .env
links:
- db
- redis
volumes:
- ./app:/app
command: bash -c "/app/bin/wait-for-it.sh db:5432 -- celery -A experimenter worker -l DEBUG"
beat:
image: app:dev
env_file: .env
links:
- db
- redis
volumes:
- ./app:/app
command: bash -c "/app/bin/wait-for-it.sh db:5432 -- celery -A experimenter beat --pidfile /celerybeat.pid -s /celerybeat-schedule -l DEBUG"
nginx:
build: ./nginx
env_file: .env
links:
- app
ports:
- "443:443"
db:
restart: always
image: postgres:9.6.17
environment:
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
volumes:
- db_volume:/var/lib/postgresql
redis:
image: redis
ports:
- "6379:6379"
kinto:
image: mozilla/kinto-dist
environment:
KINTO_INI: /etc/kinto.ini
ports:
- "8888:8888"
links:
- autograph
volumes:
- ./kinto/server.ini:/etc/kinto.ini
autograph:
image: mozilla/autograph
ports:
- "8000:8000"
volumes:
db_volume: