homelab/compose/media/automation/sonarr/compose.yaml
Eduardo Figueroa 0ff2565c5c fix: Correct media volume paths from /media to /mnt/media
Update all media services to use the correct mount point at /mnt/media
for consistency across Sonarr, Radarr, SABnzbd, qBittorrent, Jellyfin,
and Immich. This ensures proper file access and atomic moves between
download and library directories.
2025-12-03 19:53:25 +00:00

31 lines
890 B
YAML

# Sonarr - TV Show Management and Automation
# Docs: https://wiki.servarr.com/sonarr
services:
sonarr:
container_name: sonarr
image: lscr.io/linuxserver/sonarr:latest
env_file:
- .env
volumes:
- ./config:/config
# Media library
- /mnt/media/tv:/media/tv
# Download folders
- /mnt/media/downloads:/downloads
- /mnt/media/complete:/complete
- /mnt/media/incomplete:/incomplete
restart: unless-stopped
networks:
- homelab
labels:
traefik.enable: true
traefik.http.routers.sonarr.rule: Host(`sonarr.fig.systems`)
traefik.http.routers.sonarr.entrypoints: websecure
traefik.http.routers.sonarr.tls.certresolver: letsencrypt
traefik.http.services.sonarr.loadbalancer.server.port: 8989
traefik.http.routers.sonarr.middlewares: tinyauth
networks:
homelab:
external: true