-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
25 lines (25 loc) · 853 Bytes
/
docker-compose.yml
File metadata and controls
25 lines (25 loc) · 853 Bytes
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
services:
piratarr:
image: ghcr.io/holocronology/piratarr:latest
container_name: piratarr
restart: unless-stopped
ports:
- "6919:6919"
volumes:
- ./config:/config
# Mount your media libraries so Piratarr can access subtitle files.
# Then configure Path Mappings in Settings to translate Sonarr/Radarr
# paths to these mount points (e.g. /movies in Radarr -> /movies here).
# - /path/to/movies:/movies
# - /path/to/tv:/tv
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
# Optional: pre-configure via environment variables
# - RADARR_URL=http://radarr:7878
# - RADARR_API_KEY=your_radarr_api_key
# - SONARR_URL=http://sonarr:8989
# - SONARR_API_KEY=your_sonarr_api_key
# - SCAN_INTERVAL=3600
# - AUTO_TRANSLATE=true