-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
80 lines (74 loc) · 1.77 KB
/
Copy pathdocker-compose.yml
File metadata and controls
80 lines (74 loc) · 1.77 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
x-taskowl-env: &taskowl-env
DATABASE_URL: postgresql+asyncpg://taskowl:taskowl@postgres:5432/taskowl
CELERY_BROKER_URL: amqp://guest:guest@rabbitmq:5672//
API_KEY: ${API_KEY:-}
LOG_LEVEL: ${LOG_LEVEL:-INFO}
services:
api:
build: .
command: ["uv", "run", "--no-sync", "taskowl"]
environment: *taskowl-env
ports:
- "8000:8000"
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
consume:
build: .
command: ["uv", "run", "--no-sync", "taskowl-consume"]
environment: *taskowl-env
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
mcp:
build: .
command: ["uv", "run", "--no-sync", "taskowl-mcp"]
environment:
<<: *taskowl-env
TASKOWL_HOST: api
ports:
- "8001:8001"
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
api:
condition: service_started
postgres:
image: postgres:18.6
environment:
POSTGRES_USER: taskowl
POSTGRES_PASSWORD: taskowl
POSTGRES_DB: taskowl
ports:
- "5432:5432"
volumes:
- postgres-data:/var/lib/postgresql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U taskowl"]
interval: 5s
timeout: 5s
retries: 5
rabbitmq:
image: rabbitmq:4.3-management
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- "5672:5672"
- "15672:15672"
volumes:
- rabbitmq-data:/var/lib/rabbitmq
healthcheck:
test: ["CMD", "rabbitmq-diagnostics", "-q", "ping"]
interval: 5s
timeout: 5s
retries: 5
volumes:
postgres-data:
rabbitmq-data: