File size: 530 Bytes
336d249 | 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 28 | version: '3.8'
services:
backend:
build: ./dubbing_backend
ports:
- "8000:8000"
volumes:
- ./dubbing_backend/workspace:/app/workspace
environment:
- PYTHONUNBUFFERED=1
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
frontend:
build: ./dubbing_frontend
ports:
- "5173:5173"
environment:
- VITE_API_BASE=http://localhost:8000
depends_on:
- backend
|