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.

33 lines
1.1 KiB
YAML

# [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.
---
version: "2.1"
services:
nzbget:
image: ghcr.io/linuxserver/nzbget
container_name: nzbget
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=Etc/UTC
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
# Specify the user for web authentication.
- NZBGET_USER=nzbget # optional
# Specify the password for web authentication.
- NZBGET_PASS=tegbzn6789 # optional
volumes:
# NZBGet App data.
- ${BASEDIR:-/volume1/docker}/nzbget/config:/config
# Location of downloads on disk.
- ${BASEDIR:-/volume1/docker}/nzbget/downloads:/downloads # optional
ports:
# WebUI
- 6789:6789
restart: unless-stopped