SabNZBD

Link to App

Link to GitHub or Website

SABnzbd is an Open Source Binary Newsreader written in Python.

It's totally free, easy to use, and works practically everywhere. 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. SABnzbd offers an easy setup wizard and has self-analysis tools to verify your setup.

This app is hosted on Fettuccine as a docker container

https://github.com/trentnbauer/agg/blob/205cfc374516886a137f2f0b66dca9c87fa0f740/docker-compose/sabnzbd.yml
---
version: "2.1"
services:
  app:
    image: ghcr.io/linuxserver/sabnzbd:version-4.1.0@sha256:2e8400f3b64983a54c0f3486ae705e9f1d11d155b889ebf5907713859e823336
    environment:
      - TZ=$TZ
    volumes:
      - config:/config
      - $DOWNLOADS:$DOWNLOADS
      - $INCOMPLETE_DOWNLOADS:$INCOMPLETE_DOWNLOADS
    ports:
      - $PORT:8080
    restart: unless-stopped
volumes:
  config:

Port
Purpose

1234

WebUI

Host Volume
Container Volume
Purpose

/volume1/downloads/nzbd/completed

/volume1/downloads/nzbd/completed

Completed download storage

/volume1/downloads/nzbd/incomplete

/volume1/downloads/nzbd/incomplete

Incomplete download storage

sabnzbd_config

/config

Configutation files

Last updated

Was this helpful?