Sign inSign up

culater/nzbhydra2

By culater

Updated 7 days ago

nzbhydra2 in a Docker Container

Image
0

9.6K

culater/nzbhydra2 repository overview

docker-nzbhydra2 Docker image

pipeline status nzbhydra2 Release Docker link

This is a dockerized build of nzbhydra2, with the aim to create a small footprint to run it eventually on my low-end QNAP NAS. The Dockerfile utilizes the debian base image and only installs the bare minimum packages required to run nzbhydra2. This keeps the final image size small. Port 5076 is exposed to access the nzbhydra2 web interface. A healthcheck has also been added to check that nzbhydra2 is running.

Example usage

docker command line

docker run example

docker run -d \
  -v [/configdir]:/config \
  -v [/downloadsdir]:/downloads \
  -p 5076:5076 \
  --restart=unless-stopped culater/nzbhydra2
docker-compose

docker-compose example:

---
version: "2.1"
services:
  nzbhydra2:
    image: culater/nzbhydra2:latest
    container_name: nzbhydra2
    hostname: nzbhydra2
    environment:
    - PUID=1001
    - PGID=100
    - TZ=Europe/Berlin
    volumes:
    - /config:/config
    - /downloads:/downloads
    ports:
    - 5076:5076
    restart: always

Reporting problems

Please report any issues to the Gitlab issue tracker

Authors and acknowledgment

More information about nzbhydra2 can be found here: nzbhydra2

Project status

The docker image auto-updates on a weekly basis and should catch up to the latest nzbhydra2 release.

Tag summary

Content type

Image

Digest

sha256:bb12719c6

Size

149.6 MB

Last updated

7 days ago

docker pull culater/nzbhydra2