docker-bits/lsio/sabnzbd/docker-compose.yaml

32 lines
1.1 KiB
YAML
Raw Normal View History

2021-04-10 10:16:29 +00:00
# Sabnzbd makes Usenet as simple and streamlined as possible by automating
# everything we can. All you have to do is add an .nzb. SABnzbd takes over from
# there, where it will be automatically downloaded, verified, repaired,
# extracted and filed away with zero human interaction.
---
version: "2.1"
services:
sabnzbd:
image: ghcr.io/linuxserver/sabnzbd
container_name: sabnzbd
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
2021-04-13 00:58:58 +00:00
- TZ=${TZ:-Europe/Amsterdam}
2021-04-10 10:16:29 +00:00
volumes:
# Local path for sabnzbd config files.
- ${BASEDIR:-/volume1/docker}/sabnzbd/config:/config
# Local path for finished downloads.
- ${BASEDIR:-/volume1/docker}/sabnzbd/downloads:/downloads
# Local path for incomplete-downloads.
- ${BASEDIR:-/volume1/docker}/sabnzbd/incomplete-downloads:/incomplete-downloads # optional
ports:
# HTTP port for the WebUI.
- 8080:8080
# HTTPS port for the WebUI.
- 9090:9090
restart: unless-stopped