homelab/compose/media/automation/sonarr/compose.yaml
Eduardo Figueroa 3bf1575ca8 chore: General catchup - service updates and cleanup
Updated service configurations, added new services, removed deprecated
ones, and improved gitignore patterns for better repository hygiene.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-15 05:23:02 +00:00

37 lines
984 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
traefik.enable: true
traefik.docker.network: homelab
# Web UI
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
# SSO Protection
traefik.http.routers.sonarr.middlewares: authelia
networks:
homelab:
external: true