-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (32 loc) · 1.32 KB
/
docker-compose.yml
File metadata and controls
40 lines (32 loc) · 1.32 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
36
37
38
39
40
version: "3.8"
services:
subtitle-pruner:
image: ghcr.io/doctorkomodo/subtitle-pruner:latest
container_name: subtitle-pruner
restart: unless-stopped
ports:
- "14000:14000"
volumes:
# Queue persistence - stores processing queue across restarts
- ./data:/data
# Mount your media folders here
# These should match the "to" side of your PATH_MAPPINGS
# The host path depends on how you access the NAS (NFS mount, SMB mount, etc.)
- /volume2/movies:/media/movies/
- /volume2/tvseries:/media/tv/
environment:
# Set these to match your host user so the container can read/write
# your media folders and data directory. Find with: id your_user
- PUID=1000
- PGID=1000
# Comma-separated list of subtitle languages to keep
- ALLOWED_LANGUAGES=eng,dan
# Log level: DEBUG, INFO, WARNING, ERROR
- LOG_LEVEL=INFO
# Port (must match the port mapping above)
- PORT=14000
# Path mappings: translate Windows UNC paths from Radarr/Sonarr to container paths
# Format: from1=to1,from2=to2
- PATH_MAPPINGS=\\diskstation\movies\=/media/movies/,\\diskstation\tvseries\=/media/tv/
# Time of day to process files (HH:MM, 24-hour format). If not set, files are processed immediately.
- PROCESS_TIME=02:00