Spaces:
Running
Running
File size: 507 Bytes
dbbd3ec | 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 | services:
backend:
build: .
ports:
- "8000:8000"
environment:
- PORT=8000
command: uvicorn main:app --host 0.0.0.0 --port 8000
frontend:
build:
context: ./Frontend/react-app
dockerfile: Dockerfile
ports:
- "3000:80"
backend_v2:
build:
context: .
dockerfile: Dockerfile.v2
container_name: math_agent_v2
ports:
- "8080:8000"
environment:
- PORT=8000
command: uvicorn main:app --host 0.0.0.0 --port 7860 |