Files
profilarr/docker-compose.yml
santiagosayshey 123cefa6e8 chore(dev): Improve Vite hot reloading in Docker environment
- Add CHOKIDAR_USEPOLLING=true to frontend service environment
- Update Node.js version to 18 in frontend Dockerfile
- Create vite.config.js with usePolling option enabled
2025-02-05 16:09:58 +10:30

19 lines
343 B
YAML

version: '3.8'
services:
frontend:
build: ./frontend
ports:
- "3000:3000"
volumes:
- ./frontend:/app
- /app/node_modules
environment:
- VITE_API_URL=http://backend:5000
- CHOKIDAR_USEPOLLING=true
backend:
build: ./backend
ports:
- "5000:5000"
volumes:
- ./backend:/app