Files
opt/compose.sonarr.yaml

27 lines
699 B
YAML

services:
sonarr:
image: linuxserver/sonarr:4.0.16
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
extra_hosts:
- "transmission:${HOST_IP}"
- "qbittorrent:${HOST_IP}"
- "jackett:${HOST_IP}"
- "prowlarr:${HOST_IP}"
ports:
- 18989:8989
restart: unless-stopped
volumes:
- /opt/sonarr:/config
- /media/scratch/transmission:/downloads/transmission
- /media/scratch/qbittorrent:/downloads/qbittorrent
- /mnt/yotta/krypton/Shows:/tv
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8989/ping"]
interval: 30s
timeout: 10s
retries: 3