homelab/compose/media/automation/radarr/compose.yaml
Eduardo Figueroa a1824a4043 refactor(media): Remove Tinyauth middleware from media automation services
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.
2025-12-12 23:16:59 +00:00

30 lines
840 B
YAML

# Radarr - Movie Management and Automation
# Docs: https://wiki.servarr.com/radarr
services:
radarr:
container_name: radarr
image: lscr.io/linuxserver/radarr:latest
env_file:
- .env
volumes:
- ./config:/config
# Media library
- /mnt/media/movies:/media/movies
# 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.radarr.rule: Host(`radarr.fig.systems`)
traefik.http.routers.radarr.entrypoints: websecure
traefik.http.routers.radarr.tls.certresolver: letsencrypt
traefik.http.services.radarr.loadbalancer.server.port: 7878
networks:
homelab:
external: true