CoolFace
Apppublic

MateusZanco/pilates-vision-progress

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
docker-compose.yml26 linesDownload Raw Back to root
1services:2  backend:3    build:4      context: ./backend5      dockerfile: Dockerfile6    container_name: pilates_backend7    environment:8      DATABASE_URL: sqlite:////data/pilates_vision_progress.db9    volumes:10      - backend_data:/data11    ports:12      - "8000:8000"13 14  frontend:15    build:16      context: ./frontend17      dockerfile: Dockerfile18    container_name: pilates_frontend19    depends_on:20      - backend21    ports:22      - "5173:5173"23 24volumes:25  backend_data:26