-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
90 lines (85 loc) · 2.26 KB
/
Copy pathdocker-compose.yml
File metadata and controls
90 lines (85 loc) · 2.26 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
version: '3.8'
services:
redis:
image: redis:7-alpine
container_name: pdf-worker-redis
ports:
- "6379:6379"
volumes:
- redis_data:/data
command: redis-server --appendonly yes
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
pdf-worker-gcs:
build: .
container_name: pdf-worker-gcs
environment:
- STORAGE_BACKEND=gcs
- REDIS_URL=redis://redis:6379/0
- WORKER_INSTANCE_ID=worker-gcs-1
- POLL_INTERVAL=30
- MAX_CONCURRENT_FILES=3
- MAX_CONCURRENT_WORKERS=8
- GEMINI_GLOBAL_CONCURRENCY=10
- MAX_RETRIES=3
volumes:
- ./secrets:/app/secrets:ro
- ./logs:/app/logs
depends_on:
redis:
condition: service_healthy
restart: unless-stopped
healthcheck:
test: ["CMD", "python", "-c", "import os; exit(0 if os.path.exists('/app/logs/worker.log') else 1)"]
interval: 30s
timeout: 10s
retries: 3
pdf-worker-drive:
build: .
container_name: pdf-worker-drive
environment:
- STORAGE_BACKEND=drive
- REDIS_URL=redis://redis:6379/0
- WORKER_INSTANCE_ID=worker-drive-1
- POLL_INTERVAL=30
- MAX_CONCURRENT_FILES=2
- MAX_CONCURRENT_WORKERS=6
- GEMINI_GLOBAL_CONCURRENCY=8
- MAX_RETRIES=3
volumes:
- ./secrets:/app/secrets:ro
- ./logs:/app/logs
depends_on:
redis:
condition: service_healthy
restart: unless-stopped
healthcheck:
test: ["CMD", "python", "-c", "import os; exit(0 if os.path.exists('/app/logs/worker.log') else 1)"]
interval: 30s
timeout: 10s
retries: 3
pdf-api:
build: .
container_name: pdf-api
command: ["python", "-m", "dist_gcs_pdf_processing.main"]
ports:
- "8000:8000"
environment:
- REDIS_URL=redis://redis:6379/0
volumes:
- ./secrets:/app/secrets:ro
- ./logs:/app/logs
depends_on:
redis:
condition: service_healthy
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
volumes:
redis_data: