-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (53 loc) · 1.64 KB
/
docker-compose.yml
File metadata and controls
54 lines (53 loc) · 1.64 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
48
49
50
51
52
53
54
services:
astra_agents_dev:
image: ghcr.io/ten-framework/astra_agents_build:0.4.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-2-gb324bcd
container_name: astra_playground
restart: always
ports:
- "3000: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