Skip to content

Stono/docker-nzbget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-nzbget

This is an nzbget docker container.

The easiest way to use this is probably a fig file:

nzbget:
  image: stono/nzbget 
  environment:
    nzb_password: "YourNzbPassword" // If you dont specify a password, one will be generated for you
  volumes:
    - ./storage:/storage
  ports:
    - "80:6789"
    - "443:6791"

From there you can start it with sudo fig up -d and connect to it on:

Or if you don't want to use fig, this will do the job:

sudo docker run -d -e="nzb_password=YourNzbPassword" && \
  -v "/home/karl/development/git/github/docker-nzbget/storage:/storage" && \
  -p "80:6789" && \
  -p "443:6791" stono/nzbget

Storage

All config / data gets written to /storage/nzbget on the first "fig up", so if you mount in that volume to somewhere on your system, all your configuration will be preserved through docker container updates.

You could mount in your own, already existing config directory if you like.

Info

This is part of a set, all based of the same images, all desgined to eventually piece together.

About

NZBget in a docker container. Simples.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published