This commit is contained in:
Gk0Wk
2024-03-31 17:24:15 +08:00
commit e65c066cdf
3 changed files with 43 additions and 0 deletions

28
docker.compose.yml Normal file
View File

@@ -0,0 +1,28 @@
version: '3.8'
services:
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "8080:8080"
networks:
- agentcoord-network
environment:
- API_BASE=http://backend:8000
depends_on:
- backend
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "8000:8000"
networks:
- agentcoord-network
networks:
app-network:
driver: bridge