Files
luma/docker-compose.yml
2025-10-29 07:50:50 +00:00

30 lines
496 B
YAML

services:
frontend:
build: ./frontend
ports:
- "5173:5173"
volumes:
- ./frontend:/app
- /app/node_modules
environment:
- VITE_API_URL=http://localhost:8000
depends_on:
- backend
networks:
- app-network
stdin_open: true
tty: true
backend:
build: ./backend
ports:
- "8000:8000"
volumes:
- ./backend:/app
- /app/.venv
networks:
- app-network
networks:
app-network:
driver: bridge