Dockerfile to set up Sabnzbd(https://sabnzbd.org/)
4.1K
Dockerfile to set up Sabnzbd
Sources are here.
The project has git branches per Sabnzbd version. The master branch mirrors the Sabnzbd develop branch. Each other branch mirrors the respective Sabnzbd version. Tags mirrors Sabnzbd releases.
Prior to build the docker images make sure to checkout the branch/tag corresponding to the version you wish.
The Dockerfile takes an optionnal VERSION build argument corresponding to the wanted Sabnzbd version.
Its default value is develop.
VERSION=3.0.1 make build
VERSION=3.0.1 NO_CACHE=1 PULL=1 make build
docker pull jpiron/sabnzbd
docker run jpiron/sabnzbd
However, you're more likely to run the container with following:
docker run -d --restart=always --name sabnzbd \
-p 8080:8080 \
--user $(id -u ${USER}):$(id -g ${USER}) \
-e TZ=$(cat /etc/timezone) \
-v "${HOME}/.sabnzbd":/sabnzbd/datadir \
-v "${HOME}/downloads":/downloads \
jpiron/sabnzbd
MIT
Content type
Image
Digest
sha256:79f2737b5…
Size
196.9 MB
Last updated
over 2 years ago
docker pull jpiron/sabnzbd