forked from verifydev-me/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
453 lines (436 loc) · 18.1 KB
/
docker-compose.yml
File metadata and controls
453 lines (436 loc) · 18.1 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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
# ══════════════════════════════════════════════════════════════════════════════
# VERIFYDEV BACKEND INFRASTRUCTURE
# ══════════════════════════════════════════════════════════════════════════════
# █░█ █▀▀ █▀█ █ █▀▀ █▄█ █▀▄ █▀▀ █░█
# ▀▄▀ ██▄ █▀▄ █ █▀░ ░█░ █▄▀ ██▄ ▀▄▀
# ══════════════════════════════════════════════════════════════════════════════
#
# 🔐 SECURITY: All secrets loaded from .env file (never commit secrets!)
# 🚀 QUICK START: docker compose up -d
# 📊 MONITORING: docker compose logs -f [service-name]
# 🔄 REBUILD: docker compose up -d --build [service-name]
#
# ══════════════════════════════════════════════════════════════════════════════
services:
# ┌──────────────────────────────────────────────────────────────────────────┐
# │ 🌐 API GATEWAY │
# │ NGINX-based reverse proxy for all microservices │
# └──────────────────────────────────────────────────────────────────────────┘
gateway:
build: ./gateway
container_name: verifydev-gateway
ports:
- "${GATEWAY_PORT:-8000}:80"
volumes:
- ./gateway/ssl:/etc/nginx/ssl:ro
depends_on:
- auth-service
- user-service
- job-service
- recruiter-service
- resume-service
- project-analyzer
- chat-service
restart: unless-stopped
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost/health" ]
interval: 30s
timeout: 10s
retries: 3
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 256M
cpus: '0.25'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ┌──────────────────────────────────────────────────────────────────────────┐
# │ 📦 INFRASTRUCTURE │
# └──────────────────────────────────────────────────────────────────────────┘
# ─────────────────────────── Redis Cache ───────────────────────────────────
redis:
image: redis:7-alpine
container_name: verifydev-redis
ports:
- "6379:6379"
volumes:
- redis_data:/data
command: redis-server --appendonly yes --requirepass "${REDIS_PASSWORD}"
healthcheck:
test: [ "CMD", "redis-cli", "ping" ]
interval: 10s
timeout: 5s
retries: 5
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 256M
cpus: '0.25'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ─────────────────────────── RabbitMQ Message Broker ───────────────────────
rabbitmq:
image: rabbitmq:3.12-management-alpine
container_name: verifydev-rabbitmq
environment:
RABBITMQ_DEFAULT_USER: ${RABBITMQ_USER:-verifydev}
RABBITMQ_DEFAULT_PASS: ${RABBITMQ_PASS:?RABBITMQ_PASS is required}
ports:
- "5672:5672" # AMQP protocol
- "15672:15672" # Management UI
volumes:
- rabbitmq_data:/var/lib/rabbitmq
healthcheck:
test: [ "CMD", "rabbitmq-diagnostics", "check_running" ]
interval: 30s
timeout: 10s
retries: 5
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ┌──────────────────────────────────────────────────────────────────────────┐
# │ 🔐 CORE SERVICES (Node.js) │
# └──────────────────────────────────────────────────────────────────────────┘
# ─────────────────────────── Auth Service ──────────────────────────────────
auth-service:
build: ./auth-service
container_name: verifydev-auth
ports:
- "${AUTH_SERVICE_PORT:-3001}:3001"
environment:
- NODE_ENV=${NODE_ENV:-development}
- PORT=3001
- DATABASE_URL=${DATABASE_URL:?DATABASE_URL is required}
- REDIS_URL=redis://:${REDIS_PASSWORD}@redis:6379
- GITHUB_CLIENT_ID=${GITHUB_CLIENT_ID:?GITHUB_CLIENT_ID is required}
- GITHUB_CLIENT_SECRET=${GITHUB_CLIENT_SECRET:?GITHUB_CLIENT_SECRET is required}
- GITHUB_CALLBACK_URL=${GITHUB_CALLBACK_URL:-http://localhost:8000/api/v1/auth/github/callback}
- GOOGLE_CLIENT_ID=${GOOGLE_CLIENT_ID:-}
- GOOGLE_CLIENT_SECRET=${GOOGLE_CLIENT_SECRET:-}
- GOOGLE_CALLBACK_URL=${GOOGLE_CALLBACK_URL:-http://localhost:8000/api/v1/auth/google/callback}
- JWT_ACCESS_SECRET=${JWT_ACCESS_SECRET:?JWT_ACCESS_SECRET is required}
- JWT_REFRESH_SECRET=${JWT_REFRESH_SECRET:?JWT_REFRESH_SECRET is required}
- FRONTEND_URL=${FRONTEND_URL:-http://localhost:3000}
- ALLOWED_ORIGINS=${CORS_ORIGIN:-http://localhost:3000}
- SMTP_USER=${SMTP_USER:-}
- SMTP_PASSWORD=${SMTP_PASSWORD:-}
- SMTP_FROM=${SMTP_FROM:-}
depends_on:
redis:
condition: service_healthy
restart: unless-stopped
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ─────────────────────────── User Service ──────────────────────────────────
user-service:
build:
context: .
dockerfile: ./user-service/Dockerfile
container_name: verifydev-user
ports:
- "${USER_SERVICE_PORT:-3002}:3002"
- "${USER_SERVICE_GRPC_PORT:-50051}:50051"
environment:
- NODE_ENV=${NODE_ENV:-development}
- PORT=3002
- GRPC_PORT=50051
- DATABASE_URL=${DATABASE_URL:?DATABASE_URL is required}
- REDIS_URL=redis://:${REDIS_PASSWORD}@redis:6379
- RABBITMQ_URL=amqp://${RABBITMQ_USER:-verifydev}:${RABBITMQ_PASS}@rabbitmq:5672
- JWT_ACCESS_SECRET=${JWT_ACCESS_SECRET:?JWT_ACCESS_SECRET is required}
- AUTH_SERVICE_URL=http://auth-service:3001
- ALLOWED_ORIGINS=${CORS_ORIGIN:-http://localhost:3000}
- GITHUB_TOKEN=${GITHUB_TOKEN:-}
depends_on:
rabbitmq:
condition: service_healthy
redis:
condition: service_healthy
restart: unless-stopped
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ─────────────────────────── Job Service ───────────────────────────────────
job-service:
build:
context: .
dockerfile: ./job-service/Dockerfile
container_name: verifydev-job
ports:
- "${JOB_SERVICE_PORT:-3004}:3004"
environment:
- NODE_ENV=${NODE_ENV:-development}
- PORT=3004
- DATABASE_URL=${DATABASE_URL:?DATABASE_URL is required}
- JWT_ACCESS_SECRET=${JWT_ACCESS_SECRET:?JWT_ACCESS_SECRET is required}
- ALLOWED_ORIGINS=${CORS_ORIGIN:-http://localhost:3000}
- USER_SERVICE_GRPC=user-service:50051
depends_on:
- user-service
restart: unless-stopped
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ─────────────────────────── Recruiter Service ─────────────────────────────
recruiter-service:
build:
context: .
dockerfile: ./recruiter-service/Dockerfile
container_name: verifydev-recruiter
ports:
- "${RECRUITER_SERVICE_PORT:-3005}:3005"
- "${RECRUITER_SERVICE_GRPC_PORT:-50054}:50054"
environment:
- NODE_ENV=${NODE_ENV:-development}
- PORT=3005
- GRPC_PORT=50054
- DATABASE_URL=${DATABASE_URL:?DATABASE_URL is required}
- JWT_ACCESS_SECRET=${JWT_ACCESS_SECRET:?JWT_ACCESS_SECRET is required}
- JWT_REFRESH_SECRET=${JWT_REFRESH_SECRET:?JWT_REFRESH_SECRET is required}
- ALLOWED_ORIGINS=${CORS_ORIGIN:-http://localhost:3000}
- USER_SERVICE_GRPC=user-service:50051
- JOB_SERVICE_GRPC=job-service:50052
depends_on:
- user-service
- job-service
restart: unless-stopped
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ─────────────────────────── Chat Service ──────────────────────────────────
chat-service:
build: ./chat-service
container_name: verifydev-chat
ports:
- "${CHAT_SERVICE_PORT:-3006}:3006"
environment:
- PORT=3006
- DATABASE_URL=${CHAT_DATABASE_URL:-${DATABASE_URL}}
- REDIS_HOST=redis
- REDIS_PORT=6379
- REDIS_PASSWORD=${REDIS_PASSWORD:-}
- RABBITMQ_URL=amqp://${RABBITMQ_USER:-verifydev}:${RABBITMQ_PASS}@rabbitmq:5672
- JWT_ACCESS_SECRET=${JWT_ACCESS_SECRET:?JWT_ACCESS_SECRET is required}
- CORS_ORIGIN=${CORS_ORIGIN:-http://localhost:3000}
depends_on:
redis:
condition: service_healthy
rabbitmq:
condition: service_healthy
restart: unless-stopped
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ─────────────────────────── Aura Processor ────────────────────────────────
aura-processor:
build: ./aura-processor
container_name: verifydev-aura
environment:
- NODE_ENV=${NODE_ENV:-development}
- DATABASE_URL=${DATABASE_URL:?DATABASE_URL is required}
- RABBITMQ_URL=amqp://${RABBITMQ_USER:-verifydev}:${RABBITMQ_PASS}@rabbitmq:5672
- CONSUME_QUEUE=project.analyzed
- EXCHANGE_NAME=project.events
- GEMINI_API_KEY=${GEMINI_API_KEY}
depends_on:
rabbitmq:
condition: service_healthy
restart: unless-stopped
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ┌──────────────────────────────────────────────────────────────────────────┐
# │ ⚡ HIGH-PERFORMANCE SERVICES (Go) │
# └──────────────────────────────────────────────────────────────────────────┘
# ─────────────────────────── Project Analyzer ──────────────────────────────
project-analyzer:
build: ./project-analyzer
container_name: verifydev-analyzer
ports:
- "${ANALYZER_SERVICE_PORT:-8001}:8001"
environment:
- ENV=${NODE_ENV:-development}
- PORT=8001
- RABBITMQ_URL=amqp://${RABBITMQ_USER:-verifydev}:${RABBITMQ_PASS}@rabbitmq:5672/
- EXCHANGE_NAME=project.events
- CONSUME_QUEUE=project.analyze.request
- PUBLISH_QUEUE=project.analyzed
- CLONE_DIR=/tmp/repos
- GITHUB_TOKEN=${GITHUB_TOKEN:-}
# Worker Pool Configuration
- WORKER_COUNT=${ANALYZER_WORKER_COUNT:-4}
- PREFETCH_COUNT=${ANALYZER_PREFETCH_COUNT:-4}
- ANALYSIS_TIMEOUT_SEC=${ANALYSIS_TIMEOUT_SEC:-120}
volumes:
- analyzer_repos:/tmp/repos
depends_on:
rabbitmq:
condition: service_healthy
restart: unless-stopped
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 1G
cpus: '1.0'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ─────────────────────────── Resume Service ────────────────────────────────
resume-service:
build: ./resume-service
container_name: verifydev-resume
ports:
- "${RESUME_SERVICE_PORT:-8003}:8003"
environment:
- ENV=${NODE_ENV:-development}
- PORT=8003
- DATABASE_URL=${DATABASE_URL:?DATABASE_URL is required}
- RABBITMQ_URL=amqp://${RABBITMQ_USER:-verifydev}:${RABBITMQ_PASS}@rabbitmq:5672/
restart: unless-stopped
networks:
- verifydev-network
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# ┌──────────────────────────────────────────────────────────────────────────┐
# │ 🤖 AI SERVICES (DISABLED) │
# └──────────────────────────────────────────────────────────────────────────┘
# NOTE: ai-service temporarily disabled - uncomment when needed
# ai-service:
# build:
# context: ./ai-service
# dockerfile: Dockerfile.dev
# container_name: verifydev-ai
# ports:
# - "${AI_SERVICE_PORT:-3008}:3008"
# environment:
# - NODE_ENV=${NODE_ENV:-development}
# - PORT=3008
# - OLLAMA_HOST=${OLLAMA_HOST:-http://localhost:11434}
# - OLLAMA_MODEL=${OLLAMA_MODEL:-llama3.2}
# - WHATSAPP_TOKEN=${WHATSAPP_TOKEN:-}
# - WHATSAPP_PHONE_NUMBER_ID=${WHATSAPP_PHONE_NUMBER_ID:-}
# - WHATSAPP_VERIFY_TOKEN=${WHATSAPP_VERIFY_TOKEN:-verifydev_webhook_secret}
# - JOB_SERVICE_URL=http://job-service:3004
# - USER_SERVICE_URL=http://user-service:3002
# volumes:
# - ./ai-service:/app
# - /app/node_modules
# depends_on:
# - job-service
# - user-service
# restart: unless-stopped
# networks:
# - verifydev-network
# deploy:
# resources:
# limits:
# memory: 512M
# cpus: '0.5'
# logging:
# driver: json-file
# options:
# max-size: "10m"
# max-file: "3"
# ══════════════════════════════════════════════════════════════════════════════
# 💾 PERSISTENT VOLUMES
# ══════════════════════════════════════════════════════════════════════════════
volumes:
redis_data:
driver: local
rabbitmq_data:
driver: local
analyzer_repos:
driver: local
# ══════════════════════════════════════════════════════════════════════════════
# 🔗 NETWORK CONFIGURATION
# ══════════════════════════════════════════════════════════════════════════════
networks:
verifydev-network:
driver: bridge
name: verifydev-network