mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 19:01:02 +01:00
- implemented new data page for media management - renaming options to set movie / episode / folder formats - misc options for propers/repacks/video analysis - quality definitions - syncing with instances - improved mobile view for tabs / navbar
25 lines
465 B
YAML
25 lines
465 B
YAML
version: '3.8'
|
|
|
|
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
|
|
env_file:
|
|
- .env
|
|
restart: always
|
|
|