mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2025-12-23 23:07:42 -05:00
24 lines
516 B
YAML
24 lines
516 B
YAML
services:
|
|
frontend:
|
|
build: ./frontend
|
|
ports:
|
|
- '3000:3000'
|
|
volumes:
|
|
- ./frontend:/app
|
|
- /app/node_modules
|
|
environment:
|
|
- CHOKIDAR_USEPOLLING=true
|
|
|
|
backend:
|
|
build: ./backend
|
|
ports:
|
|
- '5000:5000'
|
|
volumes:
|
|
- ./backend:/app
|
|
- ./config:/config
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Australia/Adelaide
|
|
restart: always
|