Remove Tinyauth SSO middleware from all media automation services (Lidarr, Profilarr, Prowlarr, qBittorrent, Radarr, SABnzbd, Sonarr) and Jellyseerr. These services will migrate to Authelia for SSO.
30 lines
834 B
YAML
30 lines
834 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
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|