-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (30 loc) · 851 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (30 loc) · 851 Bytes
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
version: '3.8'
services:
multi-agent-cli:
build: .
volumes:
- ./configs:/app/configs:ro
- ./results:/app/results
- ./src:/workspace/src:ro
environment:
- PYTEST_AGENTS_CONFIG=/app/configs/agents.yaml
command: run pm track_tasks --path /workspace/src
metrics:
build: .
command: metrics --port 9090 --host 0.0.0.0
ports:
- "9090:9090"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9090/metrics"]
interval: 30s
timeout: 10s
retries: 3
parallel:
build: .
volumes:
- ./configs:/app/configs:ro
- ./results:/app/results
- ./src:/workspace/src:ro
environment:
- PYTEST_AGENTS_CONFIG=/app/configs/agents.yaml
command: parallel --agents pm,research,index --path /workspace/src --output /app/results/parallel.json