-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
35 lines (28 loc) · 1.06 KB
/
docker-compose.yaml
File metadata and controls
35 lines (28 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
services:
mdnx-auto-dl:
image: ghcr.io/hypernylium/mdnx-auto-dl:latest
container_name: mdnx-auto-dl
restart: unless-stopped
volumes:
# log file location
- ./appdata/logs:/app/appdata/logs:rw
# mdnx-auto-dl config location.
- ./appdata/config:/app/appdata/config:rw
# multi-download-nx config location
- ./appdata/mdnx/config:/app/appdata/bin/mdnx/config:rw
# plex/jellyfin/emby anime storage location.
# Only modify the left side, not the right.
# Example:
#- /mnt/plexdata/Anime:/data:rw
- ./appdata/data:/data:rw
### This is the CDM section that is required in order to run.
### Please choose what CDM you have (widevine or playready)
### and uncomment the correct bind-mount with your .bin/.pem files or .prd file inside.
## Widevine
#- ./appdata/mdnx/widevine:/app/appdata/bin/mdnx/widevine:rw
## Playready
#- ./appdata/mdnx/playready:/app/appdata/bin/mdnx/playready:rw
environment:
- UID=1000
- GID=1000
- TZ=America/New_York