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.
docker run example
docker run -d \
-v [/configdir]:/config \
-v [/downloadsdir]:/downloads \
-p 5076:5076 \
--restart=unless-stopped culater/nzbhydra2
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
Please report any issues to the Gitlab issue tracker
More information about nzbhydra2 can be found here: nzbhydra2
The docker image auto-updates on a weekly basis and should catch up to the latest nzbhydra2 release.
Content type
Image
Digest
sha256:bb12719c6…
Size
149.6 MB
Last updated
7 days ago
docker pull culater/nzbhydra2