-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
21 lines (21 loc) · 887 Bytes
/
docker-compose.yml
File metadata and controls
21 lines (21 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
services:
bluforge:
build: .
ports:
- "9160:9160"
volumes:
- ./config:/config
- ./output:/output
devices:
- /dev/sr0:/dev/sr0
- /dev/sg0:/dev/sg0
environment:
- MAKEMKV_ACCEPT_EULA=yes # Required: confirms acceptance of the MakeMKV EULA at https://www.makemkv.com/eula/
- MAKEMKV_VERSION=1.18.3 # MakeMKV version to install. Tested: 1.18.3
# - MAKEMKV_KEY=your_key_here # Optional: MakeMKV registration key. Free beta key: https://www.makemkv.com/forum/viewtopic.php?t=1053
# - BLUFORGE_GITHUB_TOKEN=your_pat_here # Optional: GitHub PAT (public_repo scope) for TheDiscDB contributions
# - BLUFORGE_TMDB_API_KEY=your_key_here # Optional: TMDB API key for movie/TV search on the contribution page
- BLUFORGE_AUTO_RIP=false
- USER_ID=1000
- GROUP_ID=1000
- UMASK=0022