-
Notifications
You must be signed in to change notification settings - Fork 73
/
docker-compose-production.yml
268 lines (258 loc) · 10.8 KB
/
docker-compose-production.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
261
262
263
264
265
266
267
268
version: "3.9"
services:
cron:
image: crazymax/swarm-cronjob:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
LOG_LEVEL: info
deploy:
placement:
constraints: [ node.role == manager ]
frontend:
image: ${REGISTRY}/auction-frontend:${IMAGE_TAG}
environment:
REACT_APP_AUTH_URL: https://api.demo-auction.deworker.pro
networks:
- traefik-public
- default
deploy:
labels:
- traefik.enable=true
- traefik.docker.network=traefik-public
- traefik.http.routers.frontend.rule=Host(`demo-auction.deworker.pro`) || Host(`www.demo-auction.deworker.pro`)
- traefik.http.services.frontend.loadBalancer.server.port=80
- traefik.http.middlewares.frontend-redirect.redirectRegex.regex=^(https?://)www.demo-auction.deworker.pro/(.*)$$
- traefik.http.middlewares.frontend-redirect.redirectRegex.replacement=$${1}demo-auction.deworker.pro/$${2}
- traefik.http.middlewares.frontend-redirect.redirectRegex.permanent=true
- traefik.http.routers.frontend.middlewares=frontend-redirect,secure-headers
- traefik.http.routers.frontend.entryPoints=https
- traefik.http.routers.frontend.tls=true
- traefik.http.routers.frontend.tls.certResolver=letsEncrypt
mode: replicated
replicas: 2
update_config:
parallelism: 1
delay: 10s
api:
image: ${REGISTRY}/auction-api:${IMAGE_TAG}
networks:
- traefik-public
- default
deploy:
labels:
- traefik.enable=true
- traefik.docker.network=traefik-public
- traefik.http.routers.api.rule=Host(`api.demo-auction.deworker.pro`)
- traefik.http.services.api.loadBalancer.server.port=80
- traefik.http.routers.api.middlewares=secure-headers
- traefik.http.routers.api.entryPoints=https
- traefik.http.routers.api.tls=true
- traefik.http.routers.api.tls.certResolver=letsEncrypt
mode: replicated
replicas: 2
update_config:
parallelism: 1
delay: 5s
api-php-fpm:
image: ${REGISTRY}/auction-api-php-fpm:${IMAGE_TAG}
environment:
APP_ENV: prod
APP_DEBUG: 0
DB_HOST: api-postgres
DB_USER: app
DB_PASSWORD_FILE: /run/secrets/api_db_password
DB_NAME: app
MAILER_HOST: ${API_MAILER_HOST}
MAILER_PORT: ${API_MAILER_PORT}
MAILER_USERNAME: ${API_MAILER_USERNAME}
MAILER_PASSWORD_FILE: /run/secrets/api_mailer_password
MAILER_FROM_EMAIL: ${API_MAILER_FROM_EMAIL}
FRONTEND_URL: https://demo-auction.deworker.pro
SENTRY_DSN_FILE: /run/secrets/sentry_dsn
JWT_ENCRYPTION_KEY_FILE: /run/secrets/jwt_encryption_key
JWT_PUBLIC_KEY_PATH: /run/secrets/jwt_public_key
JWT_PRIVATE_KEY_PATH: /run/secrets/jwt_private_key
OAUTH_CALLBACK_URL: https://api.demo-auction.deworker.pro
OAUTH_YANDEX_AUTH_URL: https://oauth.yandex.ru
OAUTH_YANDEX_TOKEN_URL: https://oauth.yandex.ru
OAUTH_YANDEX_API_URL: https://login.yandex.ru
OAUTH_YANDEX_CLIENT_ID: ${OAUTH_YANDEX_CLIENT_ID}
OAUTH_YANDEX_CLIENT_SECRET_FILE: /run/secrets/oauth_yandex_client_secret
OAUTH_MAILRU_AUTH_URL: https://oauth.mail.ru
OAUTH_MAILRU_TOKEN_URL: https://oauth.mail.ru
OAUTH_MAILRU_API_URL: https://oauth.mail.ru
OAUTH_MAILRU_CLIENT_ID: ${OAUTH_MAILRU_CLIENT_ID}
OAUTH_MAILRU_CLIENT_SECRET_FILE: /run/secrets/oauth_mailru_client_secret
secrets:
- api_db_password
- api_mailer_password
- sentry_dsn
- jwt_encryption_key
- jwt_public_key
- jwt_private_key
- oauth_yandex_client_secret
- oauth_mailru_client_secret
deploy:
mode: replicated
replicas: 2
update_config:
parallelism: 1
delay: 5s
api-migration:
image: ${REGISTRY}/auction-api-php-cli:${IMAGE_TAG}
environment:
APP_ENV: prod
APP_DEBUG: 0
DB_HOST: api-postgres
DB_USER: app
DB_PASSWORD_FILE: /run/secrets/api_db_password
DB_NAME: app
MAILER_HOST: ${API_MAILER_HOST}
MAILER_PORT: ${API_MAILER_PORT}
MAILER_USERNAME: ${API_MAILER_USERNAME}
MAILER_PASSWORD_FILE: /run/secrets/api_mailer_password
MAILER_FROM_EMAIL: ${API_MAILER_FROM_EMAIL}
FRONTEND_URL: https://demo-auction.deworker.pro
SENTRY_DSN_FILE: /run/secrets/sentry_dsn
JWT_ENCRYPTION_KEY_FILE: /run/secrets/jwt_encryption_key
JWT_PUBLIC_KEY_PATH: /run/secrets/jwt_public_key
JWT_PRIVATE_KEY_PATH: /run/secrets/jwt_private_key
OAUTH_CALLBACK_URL: https://api.demo-auction.deworker.pro
OAUTH_YANDEX_AUTH_URL: https://oauth.yandex.ru
OAUTH_YANDEX_TOKEN_URL: https://oauth.yandex.ru
OAUTH_YANDEX_API_URL: https://login.yandex.ru
OAUTH_YANDEX_CLIENT_ID: ${OAUTH_YANDEX_CLIENT_ID}
OAUTH_YANDEX_CLIENT_SECRET_FILE: /run/secrets/oauth_yandex_client_secret
OAUTH_MAILRU_AUTH_URL: https://oauth.mail.ru
OAUTH_MAILRU_TOKEN_URL: https://oauth.mail.ru
OAUTH_MAILRU_API_URL: https://oauth.mail.ru
OAUTH_MAILRU_CLIENT_ID: ${OAUTH_MAILRU_CLIENT_ID}
OAUTH_MAILRU_CLIENT_SECRET_FILE: /run/secrets/oauth_mailru_client_secret
secrets:
- api_db_password
- api_mailer_password
- sentry_dsn
- jwt_encryption_key
- jwt_public_key
- jwt_private_key
- oauth_yandex_client_secret
- oauth_mailru_client_secret
command: sh -c 'wait-for-it api-postgres:5432 -t 60 && php bin/app.php migrations:migrate --no-interaction'
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 5
window: 120s
api-oauth-clear-expired:
image: ${REGISTRY}/auction-api-php-cli:${IMAGE_TAG}
environment:
APP_ENV: prod
APP_DEBUG: 0
DB_HOST: api-postgres
DB_USER: app
DB_PASSWORD_FILE: /run/secrets/api_db_password
DB_NAME: app
MAILER_HOST: ${API_MAILER_HOST}
MAILER_PORT: ${API_MAILER_PORT}
MAILER_USERNAME: ${API_MAILER_USERNAME}
MAILER_PASSWORD_FILE: /run/secrets/api_mailer_password
MAILER_FROM_EMAIL: ${API_MAILER_FROM_EMAIL}
FRONTEND_URL: https://demo-auction.deworker.pro
SENTRY_DSN_FILE: /run/secrets/sentry_dsn
JWT_ENCRYPTION_KEY_FILE: /run/secrets/jwt_encryption_key
JWT_PUBLIC_KEY_PATH: /run/secrets/jwt_public_key
JWT_PRIVATE_KEY_PATH: /run/secrets/jwt_private_key
OAUTH_CALLBACK_URL: https://api.demo-auction.deworker.pro
OAUTH_YANDEX_AUTH_URL: https://oauth.yandex.ru
OAUTH_YANDEX_TOKEN_URL: https://oauth.yandex.ru
OAUTH_YANDEX_API_URL: https://login.yandex.ru
OAUTH_YANDEX_CLIENT_ID: ${OAUTH_YANDEX_CLIENT_ID}
OAUTH_YANDEX_CLIENT_SECRET_FILE: /run/secrets/oauth_yandex_client_secret
OAUTH_MAILRU_AUTH_URL: https://oauth.mail.ru
OAUTH_MAILRU_TOKEN_URL: https://oauth.mail.ru
OAUTH_MAILRU_API_URL: https://oauth.mail.ru
OAUTH_MAILRU_CLIENT_ID: ${OAUTH_MAILRU_CLIENT_ID}
OAUTH_MAILRU_CLIENT_SECRET_FILE: /run/secrets/oauth_mailru_client_secret
secrets:
- api_db_password
- api_mailer_password
- sentry_dsn
- jwt_encryption_key
- jwt_public_key
- jwt_private_key
- oauth_yandex_client_secret
- oauth_mailru_client_secret
command: sh -c 'wait-for-it api-postgres:5432 -t 60 && php bin/app.php oauth:clear-expired'
deploy:
labels:
- swarm.cronjob.enable=true
- swarm.cronjob.schedule=0 * * * *
- swarm.cronjob.skip-running=true
replicas: 0
restart_policy:
condition: none
api-postgres:
image: postgres:13.3-alpine
environment:
POSTGRES_USER: app
POSTGRES_PASSWORD_FILE: /run/secrets/api_db_password
POSTGRES_DB: app
secrets:
- api_db_password
volumes:
- api-postgres:/var/lib/postgresql/data
deploy:
placement:
constraints: [ node.labels.db == db ]
endpoint_mode: dnsrr
api-postgres-backup:
image: ${REGISTRY}/auction-api-postgres-backup:${IMAGE_TAG}
environment:
BACKUP_NAME: auction_api-postgres
POSTGRES_HOST: api-postgres
POSTGRES_USERNAME: app
POSTGRES_PASSWORD_FILE: /run/secrets/api_db_password
POSTGRES_DB: app
AWS_ACCESS_KEY_ID: ${BACKUP_AWS_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY_FILE: /run/secrets/backup_aws_secret_access_key
AWS_DEFAULT_REGION: ${BACKUP_AWS_DEFAULT_REGION}
S3_ENDPOINT: ${BACKUP_S3_ENDPOINT}
S3_BUCKET: ${BACKUP_S3_BUCKET}
secrets:
- api_db_password
- backup_aws_secret_access_key
command: sh -c 'wait-for-it api-postgres:5432 -t 60 && backup'
deploy:
labels:
- swarm.cronjob.enable=true
- swarm.cronjob.schedule=0 * * * *
- swarm.cronjob.skip-running=true
replicas: 0
restart_policy:
condition: none
secrets:
api_db_password:
file: ./secrets/api_db_password
api_mailer_password:
file: ./secrets/api_mailer_password
sentry_dsn:
file: ./secrets/sentry_dsn
jwt_encryption_key:
file: ./secrets/jwt_encryption_key
jwt_public_key:
file: ./secrets/jwt_public_key
jwt_private_key:
file: ./secrets/jwt_private_key
oauth_yandex_client_secret:
file: ./secrets/oauth_yandex_client_secret
oauth_mailru_client_secret:
file: ./secrets/oauth_mailru_client_secret
backup_aws_secret_access_key:
file: ./secrets/backup_aws_secret_access_key
volumes:
api-postgres:
networks:
traefik-public:
external: true