-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
78 lines (72 loc) · 1.99 KB
/
docker-compose.yml
File metadata and controls
78 lines (72 loc) · 1.99 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
services:
postgres:
container_name: postgres
image: postgres:14-alpine
restart: unless-stopped
# ports:
# - "5432:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: tasks
volumes:
- "./pgdata:/var/lib/postgresql/data"
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U postgres -d postgres" ]
rabbitmq:
image: rabbitmq:3-management
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
healthcheck:
test: [ "CMD", "rabbitmq-diagnostics", "ping" ]
interval: 5s
timeout: 5s
retries: 10
app:
build: .
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
TASKS_DATABASE_URL: postgresql+asyncpg://postgres:postgres@postgres:5432/postgres
TASKS_RABBITMQ_URL: amqp://guest:guest@rabbitmq:5672/
TASKS_QUEUE_NAME: tasks
TASKS_QUEUE_MAX_PRIORITY: 10
TASKS_WORKER_PREFETCH: 4
ports:
- "8000:8000"
publisher:
deploy:
replicas: 3
build: .
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
TASKS_DATABASE_URL: postgresql+asyncpg://postgres:postgres@postgres:5432/postgres
TASKS_RABBITMQ_URL: amqp://guest:guest@rabbitmq:5672/
TASKS_QUEUE_NAME: tasks
TASKS_QUEUE_MAX_PRIORITY: 10
TASKS_WORKER_PREFETCH: 4
command: python -m app.workers.publisher
consumer:
deploy:
replicas: 3
build: .
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
environment:
TASKS_DATABASE_URL: postgresql+asyncpg://postgres:postgres@postgres:5432/postgres
TASKS_RABBITMQ_URL: amqp://guest:guest@rabbitmq:5672/
TASKS_QUEUE_NAME: tasks
TASKS_QUEUE_MAX_PRIORITY: 10
TASKS_WORKER_PREFETCH: 4
command: python -m app.workers.consumer