Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: rename images and agent #321

Merged
merged 6 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ on:
workflow_dispatch:

env:
SERVER_IMAGE_NAME: astra_agents_server
PLAYGROUND_IMAGE_NAME: astra_playground
DEMO_IMAGE_NAME: agent_demo
SERVER_IMAGE_NAME: ten_agent_server
PLAYGROUND_IMAGE_NAME: ten_agent_playground
DEMO_IMAGE_NAME: ten_agent_demo

jobs:
build:
Expand Down
36 changes: 18 additions & 18 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
astra_agents_dev:
ten_agent_dev:
image: ghcr.io/ten-framework/ten_agent_build:0.1.0
container_name: astra_agents_dev
container_name: ten_agent_dev
platform: linux/amd64
tty: true
stdin_open: true
Expand All @@ -17,33 +17,33 @@ services:
env_file:
- .env
networks:
- astra_network
astra_playground:
image: ghcr.io/ten-framework/astra_playground:v0.4.1-9-g09a1df2
container_name: astra_playground
- ten_agent_network
ten_agent_playground:
image: ghcr.io/ten-framework/ten_agent_playground:v0.4.1-9-g09a1df2
container_name: ten_agent_playground
restart: always
ports:
- "3000:3000"
networks:
- astra_network
- ten_agent_network
environment:
- AGENT_SERVER_URL=http://astra_agents_dev:8080
- TEN_DEV_SERVER_URL=http://astra_agents_dev:49483
agent_demo_ui:
- 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/agent_demo:v0.4.1-9-g09a1df2
container_name: agent_demo_ui
container_name: ten_agent_demo
restart: always
ports:
- "3002:3000"
wangyoucao577 marked this conversation as resolved.
Show resolved Hide resolved
networks:
- astra_network
- ten_agent_network
environment:
- AGENT_SERVER_URL=http://astra_agents_dev:8080
- AGENT_SERVER_URL=http://ten_agent_dev:8080

# use this when you want to run the playground in local development mode
# astra_playground_dev:
# ten_agent_playground_dev:
# image: node:20-alpine
# container_name: astra_playground_dev
# container_name: ten_agent_playground_dev
# restart: always
# command: sh -c "cd /app/playground && npm i && npm run dev" #build && npm run start"
# ports:
Expand All @@ -57,9 +57,9 @@ services:
ports:
- "3001:3000"
networks:
- astra_network
- ten_agent_network
environment:
- TEN_DEV_SERVER_URL=http://astra_agents_dev:49483
- TEN_DEV_SERVER_URL=http://ten_agent_dev:49483
networks:
astra_network:
ten_agent_network:
driver: bridge