-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathdocker-compose.prod.slim.swarm.yml
260 lines (252 loc) · 5.63 KB
/
docker-compose.prod.slim.swarm.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
version: "3.8"
networks:
webgateway:
external: true
services:
nginx:
container_name: nginx
image: nginx:latest
command: '/bin/sh -c ''while :; do sleep 336h & wait $${!}; nginx -s reload; done & nginx -g "daemon off;"'''
depends_on:
- backend
volumes:
- ./docker/nginx/nginx.conf:/etc/nginx/sites-available/default.conf
- ./docker/nginx/certbot/conf:/etc/letsencrypt
- ./docker/nginx/certbot/www:/var/www/certbot
ports:
- 80:80
- 443:443
deploy:
placement:
constraints:
- node.role == manager
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
update_config:
parallelism: 2
delay: 10s
order: stop-first
rollback_config:
parallelism: 2
delay: 10s
order: stop-first
resources:
limits:
cpus: '0.20'
memory: 100M
reservations:
cpus: '0.05'
memory: 20M
ports:
- 80:80
- 443:443
certbot:
container_name: certbot
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 118h & wait $${!}; done;'"
image: certbot/certbot
volumes:
- ./docker/nginx/certbot/conf:/etc/letsencrypt
- ./docker/nginx/certbot/www:/var/www/certbot
deploy:
placement:
constraints:
- node.role == manager
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
update_config:
parallelism: 2
delay: 10s
order: stop-first
rollback_config:
parallelism: 2
delay: 10s
order: stop-first
resources:
limits:
cpus: '0.20'
memory: 100M
reservations:
cpus: '0.05'
memory: 20M
ports:
- 80:80
- 443:443
backend:
image: backend:latest-prod
networks:
- webgateway
- default
env_file:
- .prod.env
build:
context: .
dockerfile: backend.Dockerfile
ports:
- 8000:8000
volumes:
- ./app:/app
deploy:
mode: replicated
replicas: 4
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
update_config:
parallelism: 2
delay: 10s
order: stop-first
rollback_config:
parallelism: 2
delay: 10s
order: stop-first
resources:
limits:
cpus: '0.50'
memory: 150M
reservations:
cpus: '0.20'
memory: 40M
celery:
image: celery:latest-prod
env_file:
- .prod.env
build:
context: .
dockerfile: celery.Dockerfile
ports:
- 8000
depends_on:
- backend
volumes:
- ./app:/app
deploy:
mode: replicated
replicas: 4
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
update_config:
parallelism: 2
delay: 10s
order: stop-first
rollback_config:
parallelism: 2
delay: 10s
order: stop-first
resources:
limits:
cpus: '0.50'
memory: 200M
reservations:
cpus: '0.20'
memory: 50M
flower:
image: flower:latest-prod
container_name: flower
networks:
- webgateway
- default
build:
context: .
dockerfile: flower.Dockerfile
env_file:
- .prod.env
volumes:
- ./app:/app
ports:
- 8888:8888
deploy:
placement:
constraints:
- node.role == manager
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
update_config:
parallelism: 2
delay: 10s
order: stop-first
rollback_config:
parallelism: 2
delay: 10s
order: stop-first
resources:
limits:
cpus: '0.20'
memory: 50M
reservations:
cpus: '0.05'
memory: 20M
redis:
image: redis
container_name: redis
env_file:
- .prod.env
command: [ "redis-server", "/docker/redis/redis.conf" ]
ports:
- 6379:6379
volumes:
- ./docker/redis/redis-data:/data/bases
- ./docker/redis/redis.conf:/docker/redis/redis.conf
- ./docker/redis/log:/docker/redis/log
deploy:
placement:
constraints:
- "node.labels.type==queue"
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
update_config:
parallelism: 2
delay: 10s
order: stop-first
rollback_config:
parallelism: 2
delay: 10s
order: stop-first
rabbitmq:
image: rabbitmq:3.8.4-management
container_name: rabbitmq
networks:
- webgateway
- default
env_file:
- .prod.env
volumes:
- ./docker/rabbitmq/etc/:/etc/rabbitmq/
- ./docker/rabbitmq/data/:/var/lib/rabbitmq/
- ./docker/rabbitmq/logs/:/var/log/rabbitmq/
ports:
- 5672:5672
- 15672:15672
deploy:
placement:
constraints:
- "node.labels.type==queue"
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
update_config:
parallelism: 2
delay: 10s
order: stop-first
rollback_config:
parallelism: 2
delay: 10s
order: stop-first