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.
29 lines
865 B
YAML
29 lines
865 B
YAML
# SABnzbd - Usenet binary newsreader
|
|
# Docs: https://docs.linuxserver.io/images/docker-sabnzbd/
|
|
|
|
services:
|
|
sabnzbd:
|
|
container_name: sabnzbd
|
|
image: lscr.io/linuxserver/sabnzbd:latest
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./config:/config
|
|
- /mnt/media/downloads:/downloads
|
|
- /mnt/media/complete:/complete
|
|
- /mnt/media/incomplete:/incomplete
|
|
restart: unless-stopped
|
|
networks:
|
|
- homelab
|
|
labels:
|
|
traefik.enable: true
|
|
traefik.docker.network: homelab
|
|
traefik.http.routers.sabnzbd.rule: Host(`sab.fig.systems`)
|
|
traefik.http.routers.sabnzbd.entrypoints: websecure
|
|
traefik.http.routers.sabnzbd.tls.certresolver: letsencrypt
|
|
traefik.http.services.sabnzbd.loadbalancer.server.port: 8080
|
|
traefik.http.routers.sabnzbd.middlewares: tinyauth
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|