forked from TEN-framework/ten-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (43 loc) · 1.12 KB
/
Copy pathdocker-compose.yml
File metadata and controls
43 lines (43 loc) · 1.12 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
services:
ten_agent_dev:
image: ghcr.io/ten-framework/ten_agent_build:0.2.4
container_name: ten_agent_dev
platform: linux/amd64
tty: true
stdin_open: true
restart: always
ports:
- "${GRAPH_DESIGNER_SERVER_PORT}:${GRAPH_DESIGNER_SERVER_PORT}"
- "${SERVER_PORT}:${SERVER_PORT}"
volumes:
- ./:/app
- ${LOG_PATH}:${LOG_PATH}
working_dir: /app
env_file:
- .env
networks:
- ten_agent_network
ten_agent_playground:
image: ghcr.io/ten-framework/ten_agent_playground:0.6.1-39-gcda3b08
container_name: ten_agent_playground
restart: always
ports:
- "3000:3000"
networks:
- ten_agent_network
environment:
- AGENT_SERVER_URL=http://ten_agent_dev:8080
- TEN_DEV_SERVER_URL=http://ten_agent_dev:49483
ten_agent_demo:
image: ghcr.io/ten-framework/ten_agent_demo:0.6.1-40-ge6c28a4
container_name: ten_agent_demo
restart: always
ports:
- "3002:3000"
networks:
- ten_agent_network
environment:
- AGENT_SERVER_URL=http://ten_agent_dev:8080
networks:
ten_agent_network:
driver: bridge