Sign inSign up

culater/sabnzbd

By culater

Updated 5 days ago

The SabNzbd App in a Docker Container

Image
0

7.3K

culater/sabnzbd repository overview

docker-sabnzbd

pipeline status Sabnzbd Release Docker link

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

Docker

The resulting docker image can be found here https://hub.docker.com/r/culater/sabnzbd

Notifications

This image has nzbnotify as well as apprise built in for notifications.

Nzbnotify can be setup as follows:

  1. Goto Config > Folders > Scripts Folder and set /app/nzbnotify as the script folder, then click Save Changes
  2. Goto Config > Notifications and select Enable Notification Script
  3. Set the Script dropdown to sabnzbd-notify.py
  4. Add your individual notification parameters to the Parameters input field, then Save Changes

Check the sabnzb wiki for more information on using notifications.

Example usage

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

Reporting problems

Please report any issues to the Gitlab issue tracker

Authors and acknowledgment

More information about sabnzbd can be found here: SABnzbd

Project status

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.

Tag summary

Content type

Image

Digest

sha256:ab2e50978

Size

65.5 MB

Last updated

5 days ago

docker pull culater/sabnzbd