File size: 543 Bytes
0cb1aa7 | 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:
context: ./backend
dockerfile: Dockerfile
ports:
- "8000:8000"
env_file:
- ./backend/.env
environment:
- ALLOWED_ORIGINS=http://localhost:80,http://localhost:5173
volumes:
- ./backend/outputs:/app/outputs
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "80:80"
environment:
- VITE_API_URL=http://localhost:8000
depends_on:
- backend
restart: unless-stopped
|