2024-03-24 02:33:02 +00:00
|
|
|
---
|
|
|
|
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
|
|
|
|
- /volume1/downloads:/downloads
|
|
|
|
- /volume1/downloads/incomplete:/incomplete
|
|
|
|
|
|
|
|
|
|
|
|
labels:
|
|
|
|
- "traefik.enable=true"
|
|
|
|
- "traefik.http.services.sabnzbd.loadbalancer.server.port=8080"
|
2024-03-24 06:22:49 +00:00
|
|
|
- 'traefik.http.routers.sabnzbd.middlewares='
|
2024-03-24 02:33:02 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
- web
|
|
|
|
|
|
|
|
networks:
|
|
|
|
web:
|
|
|
|
external: true
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
sabnzbd_data:
|
|
|
|
driver: local
|
|
|
|
name: sabnzbd_data
|