forked from TEN-framework/TEN-Agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
65 lines (64 loc) · 2.01 KB
/
docker-compose.yml
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
services:
astra_agents_dev:
image: ghcr.io/ten-framework/ten_agent_build:0.1.0
container_name: astra_agents_dev
platform: linux/amd64
tty: true
stdin_open: true
restart: always
command: "make run-gd-server"
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:
- astra_network
astra_playground:
image: ghcr.io/ten-framework/astra_playground:v0.4.1-103-g391e0d0
container_name: astra_playground
restart: always
ports:
- "3000:3000"
networks:
- astra_network
environment:
- AGENT_SERVER_URL=http://astra_agents_dev:8080
- TEN_DEV_SERVER_URL=http://astra_agents_dev:49483
agent_demo_ui:
image: ghcr.io/ten-framework/agent_demo:v0.4.1-9-g09a1df2
container_name: agent_demo_ui
restart: always
ports:
- "3002:3000"
networks:
- astra_network
environment:
- AGENT_SERVER_URL=http://astra_agents_dev:8080
# use this when you want to run the playground in local development mode
# astra_playground_dev:
# image: node:20-alpine
# container_name: astra_playground_dev
# restart: always
# command: sh -c "cd /app/playground && npm i && npm run dev" #build && npm run start"
# ports:
# - "3002:3000"
# volumes:
# - ./:/app
ten_graph_designer:
image: ghcr.io/ten-framework/ten_graph_designer:dde0ff1
container_name: ten_graph_designer
restart: always
ports:
- "3001:3000"
networks:
- astra_network
environment:
- TEN_DEV_SERVER_URL=http://astra_agents_dev:49483
networks:
astra_network:
driver: bridge