Run from Docker registry

The image is available from the Docker registry and this is the simplest way to get it.

To run the image use one of the following commands:

1
2
3
4
5
6
7
8
9
docker run -d --name sabnzbd \
-v /path/to/sabnzbd/downloaded:/data/completed \
-v /path/to/sabnzbd/downloading:/data/incomplete \
-v /path/to/sabnzbd:/config \
-v /etc/resolv.conf:/etc/resolv.conf:ro \
-v /etc/localtime:/etc/localtime:ro \
-e PUID=911 -e PGID=911 \
-p 8080:8080 \
jsloan117/sabnzbd

Using a docker environment file:

1
2
3
4
5
6
7
8
9
docker run -d --name sabnzbd \
-v /path/to/sabnzbd/downloaded:/data/completed \
-v /path/to/sabnzbd/downloading:/data/incomplete \
-v /path/to/sabnzbd:/config \
-v /etc/resolv.conf:/etc/resolv.conf:ro \
-v /etc/localtime:/etc/localtime:ro \
--env-file DockerEnv \
-p 8080:8080 \
jsloan117/sabnzbd