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.
31 lines
896 B
YAML
31 lines
896 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
|
|
traefik.http.routers.radarr.middlewares: tinyauth
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|