-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.staging.yml
More file actions
319 lines (310 loc) · 8.58 KB
/
docker-compose.staging.yml
File metadata and controls
319 lines (310 loc) · 8.58 KB
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
services:
migrate:
image: ${API_IMAGE}
command: migrate
environment:
PORT: 3000
ENVIRONMENT: staging
GIT_BRANCH: ${GIT_BRANCH:-unknown}
DEPLOYMENT_ENVIRONMENT: ${DEPLOYMENT_ENVIRONMENT:-staging}
# Production database URL for data migration
PRODUCTION_DATABASE_URL: ${PRODUCTION_DATABASE_URL}
# Test user credentials for staging setup
TEST_SUPERADMIN_EMAIL: ${TEST_SUPERADMIN_EMAIL}
TEST_ADMIN_EMAIL: ${TEST_ADMIN_EMAIL}
TEST_USER_EMAIL: ${TEST_USER_EMAIL}
TEST_SUPERADMIN_PASSWORD: ${TEST_SUPERADMIN_PASSWORD}
TEST_ADMIN_PASSWORD: ${TEST_ADMIN_PASSWORD}
TEST_USER_PASSWORD: ${TEST_USER_PASSWORD}
env_file:
- staging.env
networks:
- backend
deploy:
replicas: 1
placement:
constraints: [node.role == manager]
restart_policy:
# Use 'none' for one-shot migration tasks - don't restart after completion
condition: none
# Ensure only one migrate service runs at a time to prevent migration conflicts
update_config:
parallelism: 1
delay: 10s
# Don't rollback if migration completes (exits 0) - that's expected behavior
failure_action: pause
# Short monitor time since migration should complete quickly
monitor: 10s
order: stop-first
api:
image: ${API_IMAGE}
command: start
# Enable EC2 instance role credentials for AWS SDK (S3, etc.)
extra_hosts:
- "169.254.169.254:169.254.169.254"
environment:
PORT: 3000
ENVIRONMENT: staging
GIT_COMMIT_SHA: ${GIT_COMMIT_SHA:-unknown}
GIT_BRANCH: ${GIT_BRANCH:-unknown}
DEPLOYMENT_ENVIRONMENT: ${DEPLOYMENT_ENVIRONMENT:-staging}
ports:
- target: 3000
published: 3002
protocol: tcp
mode: ingress
env_file:
- staging.env
networks:
- backend
- execution
deploy:
replicas: 1
resources:
reservations:
cpus: "0.1"
memory: 100M
# Rolling update configuration to prevent race conditions
update_config:
parallelism: 1
delay: 10s
failure_action: rollback
monitor: 60s
max_failure_ratio: 0.3
order: start-first
rollback_config:
parallelism: 1
delay: 0s
failure_action: pause
monitor: 60s
order: stop-first
restart_policy:
condition: on-failure
delay: 10s
max_attempts: 3
window: 120s
worker:
image: ${API_IMAGE}
command: worker
# Enable EC2 instance role credentials for AWS SDK (S3, etc.)
extra_hosts:
- "169.254.169.254:169.254.169.254"
environment:
PORT: 3000
ENVIRONMENT: staging
# Only handle execution tasks, not build tasks
CELERY_WORKER_QUEUES: default
GIT_BRANCH: ${GIT_BRANCH:-unknown}
DEPLOYMENT_ENVIRONMENT: ${DEPLOYMENT_ENVIRONMENT:-staging}
env_file:
- staging.env
networks:
- backend
deploy:
replicas: 1
resources:
reservations:
cpus: "0.1"
memory: 100M
# Rolling update configuration to prevent race conditions
update_config:
parallelism: 1
delay: 10s
failure_action: rollback
monitor: 60s
max_failure_ratio: 0.3
rollback_config:
parallelism: 1
delay: 0s
failure_action: pause
monitor: 60s
restart_policy:
condition: on-failure
delay: 10s
max_attempts: 3
window: 120s
beat:
image: ${API_IMAGE}
command: beat
# Enable EC2 instance role credentials for AWS SDK (S3, etc.)
extra_hosts:
- "169.254.169.254:169.254.169.254"
environment:
PORT: 3000
ENVIRONMENT: staging
GIT_BRANCH: ${GIT_BRANCH:-unknown}
DEPLOYMENT_ENVIRONMENT: ${DEPLOYMENT_ENVIRONMENT:-staging}
env_file:
- staging.env
networks:
- backend
deploy:
replicas: 1
resources:
reservations:
cpus: "0.1"
memory: 100M
# Rolling update configuration to prevent race conditions
update_config:
parallelism: 1
delay: 10s
failure_action: rollback
monitor: 60s
max_failure_ratio: 0.3
rollback_config:
parallelism: 1
delay: 0s
failure_action: pause
monitor: 60s
restart_policy:
condition: on-failure
delay: 10s
max_attempts: 3
window: 120s
docker:
image: ${API_IMAGE}
command: worker
user: root
# Enable EC2 instance role credentials for AWS SDK (S3, ECR, etc.)
extra_hosts:
- "169.254.169.254:169.254.169.254"
environment:
PORT: 3000
ENVIRONMENT: staging
# Only handle build tasks that require Docker socket access
CELERY_WORKER_QUEUES: build
GIT_BRANCH: ${GIT_BRANCH:-unknown}
DEPLOYMENT_ENVIRONMENT: ${DEPLOYMENT_ENVIRONMENT:-staging}
env_file:
- staging.env
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- backend
deploy:
placement:
constraints: [node.role == manager]
replicas: 1
resources:
reservations:
cpus: "0.5"
memory: 800M
limits:
cpus: "1.0"
memory: 1G
# Rolling update configuration for builder
update_config:
parallelism: 1
delay: 10s
failure_action: rollback
monitor: 60s
max_failure_ratio: 0.5
rollback_config:
parallelism: 1
delay: 0s
failure_action: pause
monitor: 60s
restart_policy:
condition: on-failure
delay: 10s
max_attempts: 3
window: 120s
postgres:
image: postgis/postgis:16-3.4
environment:
POSTGRES_DB: ${STAGING_DB_NAME:-trendsearth_staging}
POSTGRES_USER: ${STAGING_DB_USER:-trendsearth_staging}
POSTGRES_PASSWORD: ${STAGING_DB_PASSWORD:-postgres}
ports:
- target: 5432
published: 5433
protocol: tcp
mode: ingress
volumes:
- postgres_staging_data:/var/lib/postgresql/data
configs:
- source: postgres_init
target: /docker-entrypoint-initdb.d/init-postgis.sh
mode: 0755
networks:
- backend
deploy:
placement:
constraints:
- node.role == manager
resources:
reservations:
cpus: "0.1"
memory: 200M
# Rolling update configuration for database
update_config:
parallelism: 1
delay: 10s
failure_action: rollback
monitor: 60s
max_failure_ratio: 0.3
rollback_config:
parallelism: 1
delay: 0s
failure_action: pause
monitor: 60s
restart_policy:
condition: on-failure
delay: 10s
max_attempts: 3
window: 120s
redis:
image: redis:7-alpine
ports:
- target: 6379
volumes:
# Persistent Redis data storage - retains data across deployments
- redis_staging_data:/data
networks:
- backend
deploy:
placement:
constraints: [node.role == manager]
resources:
reservations:
cpus: "0.1"
memory: 100M
# Rolling update configuration for Redis
update_config:
parallelism: 1
delay: 10s
failure_action: rollback
monitor: 60s
max_failure_ratio: 0.3
rollback_config:
parallelism: 1
delay: 0s
failure_action: pause
monitor: 60s
# Append-only file persistence for Redis data durability
command: redis-server --appendonly yes --appendfsync everysec
volumes:
postgres_staging_data:
# Persistent Redis data volume - maintains session data, cache, and Celery task state across deployments
redis_staging_data:
driver: local
networks:
backend:
driver: overlay
attachable: true
ipam:
driver: default
config:
# Use 10.20.x.x for staging (prod uses 10.10.x.x)
- subnet: ${DOCKER_SUBNET:-10.20.0.0/16}
execution:
driver: overlay
attachable: true
ipam:
driver: default
config:
# Use 10.21.x.x for staging execution (separate from backend)
- subnet: ${EXECUTION_SUBNET:-10.21.0.0/24}
configs:
postgres_init:
file: ./config/db/init-postgis.sh