This is an alpine-based dockerized build of sabnzbd. This is part of a collection of docker images, designed to run on my low-end x86 based QNAP NAS server. My aim is to create an image with a small footprint.
Default Port: Please note that this image uses port 8123 by default, not 8080 as most others do. Port 8080 is used by a lot of tools and was problematic within my environment. You can still use 8080 by mapping the port on the command line or in the docker-compose, e.g. like this:
-p 8080:8123
The resulting docker image can be found here https://hub.docker.com/r/culater/sabnzbd
This image has nzbnotify as well as apprise built in for notifications.
Nzbnotify can be setup as follows:
Check the sabnzb wiki for more information on using notifications.
docker run example:
docker run -d \
-v [/configdir]:/config \
-v [/completedir]:/complete \
-v [/incompletedir]:/incomplete \
-p 8123:8123 \
culater/sabnzbd
docker-compose example:
---
version: "2.1"
services:
sabnzbd:
image: culater/sabnzbd
container_name: sabnzbd
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- /path/to/config:/config
- /path/to/complete:/complete
- /path/to/incomplete:/incomplete #optional
ports:
- 8123:8123
restart: unless-stopped
Please report any issues to the Gitlab issue tracker
More information about sabnzbd can be found here: SABnzbd
The docker image auto-updates after a new release of sabnzbd within a few days. The current sabnzbd version can be seen from the release tag.
Content type
Image
Digest
sha256:ab2e50978…
Size
65.5 MB
Last updated
5 days ago
docker pull culater/sabnzbd