ten / docker-compose.yml
3v324v23's picture
Зафиксирована рабочая версия TEN-Agent для HuggingFace Space
87337b1
raw
history blame contribute delete
868 Bytes
services:
ten_agent_dev:
image: ghcr.io/ten-framework/ten_agent_build:0.4.17
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.8.0-98-gddb26d7
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
networks:
ten_agent_network:
driver: bridge