Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 733 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 733 Bytes

Nzbget Dockerfile

This is a dockerised version of nzbget.

Usage

The container has three volumes, one for configuration, one for successfully downloaded files, and one for everything else (lock files, queue, intermediates, etc).

Create named volumes for the config and main dirs:

docker volume create --name nzbget-config
docker volume create --name nzbget-main

Start a container, exposing the UI port, and binding all the volumes:

docker run -d --name nzbget \
              --restart always \
              -v nzbget-config:/config \
              -v nzbget-main:/maindir \
              -v /mnt/external/downloads:/destination \
              -p 6789:6789 \
              csmith/nzbget:16.4