added overseerr, prowlarr, radarr, and sabnzbd

This commit is contained in:
2024-03-17 01:28:49 +00:00
parent 6a959c57ae
commit 6a36f0c286
4 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
---
services:
sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest
container_name: sabnzbd
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
volumes:
- sabnzbd_data:/config
- /mnt/downloads:/downloads
- /mnt/downloads/incomplete:/incomplete
labels:
- "traefik.enable=true"
- "traefik.http.services.sabnzbd.loadbalancer.server.port=8080"
- 'traefik.http.routers.sabnzbd.middlewares=authelia@docker'
networks:
- web
networks:
web:
external: true
volumes:
sabnzbd_data:
external: true