-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (38 loc) · 790 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (38 loc) · 790 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
34
35
36
37
38
39
40
41
42
version: '3.8'
services:
agent:
build:
context: .
dockerfile: sample_agent/Dockerfile
ports:
- "5001:5001"
networks:
- lab-network
harness:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/app
environment:
- AGENT_API_URL=${AGENT_API_URL}
- EVAL_MAX_TURNS=${EVAL_MAX_TURNS}
depends_on:
- agent
networks:
- lab-network
dashboard:
image: python:3.11-slim
working_dir: /app
volumes:
- .:/app
command: sh -c "pip install streamlit pandas && streamlit run dashboard/app.py --server.port 8501 --server.address 0.0.0.0"
ports:
- "8501:8501"
depends_on:
- harness
networks:
- lab-network
networks:
lab-network:
driver: bridge