homelab/compose/media/automation/sabnzbd/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

28 lines
808 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
networks:
homelab:
external: true