mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 19:01:02 +01:00
- 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
19 lines
343 B
YAML
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 |