-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (44 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
47 lines (44 loc) · 1.08 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
services:
dev:
build:
context: .
target: dev
command: ["sleep", "infinity"]
init: true
stdin_open: true
tty: true
working_dir: /workspace
volumes:
- .:/workspace
- typescript_node_modules:/workspace/packages/agent-mesh/sdks/typescript/node_modules
test:
build:
context: .
target: test
command: ["bash", "/workspace/scripts/docker/run-tests.sh"]
init: true
user: "1000:1000"
working_dir: /workspace
volumes:
- .:/workspace
- typescript_node_modules:/workspace/packages/agent-mesh/sdks/typescript/node_modules
dashboard:
profiles: ["dashboard"]
build:
context: .
target: dev
command:
- streamlit
- run
- packages/agent-hypervisor/examples/dashboard/app.py
- --server.address=0.0.0.0
- --server.port=8501
init: true
ports:
- "8501:8501"
working_dir: /workspace
volumes:
- .:/workspace
- typescript_node_modules:/workspace/packages/agent-mesh/sdks/typescript/node_modules
volumes:
typescript_node_modules: