Wiki > NZBHydra2
NZBHydra2 is a meta search for newznab indexers and torznab trackers.
Installation
-
Connect to your slot through SSH
-
Create a directory for NZBHydra2
mkdir -p ~/nzbhydra2
-
Create a compose file.
touch ~/nzbhydra2/docker-compose.yml
-
Edit the compose file
nano ~/nzbhydra2/docker-compose.yml
-
Copy the following adjusting your time zone if desired and changing your directory paths for your files as needed. Paste into the text editor. Once pasted, press
Ctrl+S
thenCtrl+X
services:
nzbhydra2:
image: lscr.io/linuxserver/nzbhydra2:latest
container_name: nzbhydra2
environment:
- PUID=0
- PGID=0
- TZ=Etc/UTC
volumes:
- /home/user/nzbhydra:/config
- /home/user:/home/user
ports:
- 27608:5076
restart: unless-stopped
-
Start the compose file:
podman-compose -f ~/nzbhydra2/docker-compose.yml up -d
-
Set up authentication in NZBHydra2. Go to http://server.whatbox.ca:27608/config/auth and change the
Auth type
toLogin form
. Then, set all of theRestrictions
to theOn
position. ClickAdd a new user
and fill in a username and password you will use to log into NZBHydra2. ClickSave
in the top right of the page to save the authentication settings, allow NZBHydra2 to restart, then log back in at http://server.whatbox.ca:27608
Accessing NZBHydra2
You will now be able to access NZBHydra2 at http://server.whatbox.ca:27608/
If you need to stop the container, you can shut it down with podman-compose -f ~/nzbhydra2/docker-compose.yml down
. If you need to start it again, run podman-compose -f ~/nzbhydra2/docker-compose.yml up -d
.