systems:docker_main:install_docker_containers:install_sabnzbd
This is an old revision of the document!
Table of Contents
Systems - Docker Main - Install Docker Containers - Install SABnzbd
SABnzbd is a binary newsreader.
It makes downloading from Usenet easy by automating the whole thing.
You give it an NZB file or an RSS feed, it does the rest.
Create the SABnzbd Directories
SABnzbd will store its configuration data in a directory on the Host VM.
On the Ubuntu VM Host, create a directory for this config data.
mkdir /home/peter/sabnzbd mkdir /home/peter/sabnzbd/config mkdir /home/peter/sabnzbd/downloads mkdir /home/peter/sabnzbd/downloads-incomplete
NOTE: The downloads directory will be used by other services too, so not within the sabnzbd directory.
Determine the UID and GID
On the Ubuntu VM Host:
id peter
returns:
uid=1000(peter) gid=1000(peter) groups=1000(peter)...
NOTE: Take a note of the UID and GID numbers.
- In this case 1000.
Install SABnzbd
In Portainer:
- Select Stack.
- Click Add Stack.
- Name: SABnzbd.
- Web editor:
--- version: "2.1" services: sabnzbd: image: ghcr.io/linuxserver/sabnzbd container_name: sabnzbd environment: - PUID=1000 - PGID=1000 - TZ=Europe/Jersey volumes: - /home/peter/sabnzbd/config:/config - /home/peter/sabnzbd/downloads:/downloads #optional - /home/peter/sabnzbd/downloads-incomplete:/incomplete-downloads #optional ports: - 8080:8080 - 9090:9090 restart: unless-stopped
systems/docker_main/install_docker_containers/install_sabnzbd.1626370990.txt.gz · Last modified: 2021/07/15 17:43 by peter