You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
859 B
Bash

# [Nzbget](http://nzbget.net/) is a usenet downloader, written in C++ and
# designed with performance in mind to achieve maximum download speed by using
# very little system resources.
source ./.env
docker run -d \
--name=nzbget \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-e NZBGET_USER=nzbget `# optional` `# Specify the user for web authentication.` \
-e NZBGET_PASS=tegbzn6789 `# optional` `# Specify the password for web authentication.` \
-p 6789:6789 `# WebUI` \
-v ${BASEDIR:-/volume1/docker}/nzbget/config:/config `# NZBGet App data.` \
-v ${BASEDIR:-/volume1/docker}/nzbget/downloads:/downloads `# optional` `# Location of downloads on disk.` \
--restart unless-stopped \
ghcr.io/linuxserver/nzbget