A simple and super lightweight nzbget docker container, based on the latest Alpine Linux base image 🐧🐋💻.
Always shipped with the latest stable nzbget version! Providing a path to your own config is optional.
Quick start:
docker run -d -p 6789:6789 -v /path/to/downloads:/downloads --name nzbget pwntr/nzbget-alpine
With your own config (make sure to adjust the paths and your logging preferences inside your config file):
docker run -d -p 6789:6789 -v /path/to/config:/config -v /path/to/downloads:/downloads --name nzbget pwntr/nzbget-alpine
To have the container start when the host boots, add docker's restart policy:
docker run -d --restart=always -p 6789:6789 -v /path/to/config:/config -v /path/to/downloads:/downloads --name nzbget pwntr/nzbget-alpine