Skip to content

Commit

Permalink
✨ nzbhydra
Browse files Browse the repository at this point in the history
  • Loading branch information
juftin committed Apr 6, 2024
1 parent a0bcaee commit 12249d3
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ include:
- stacks/media/tautulli.yaml # Tautulli (Plex Analytics)
- stacks/media/transmission.yaml # Transmission (Torrents Behind VPN)
- stacks/media/sabnzbd.yaml # SABnzbd (Usenet Downloading)
- stacks/media/nzbhydra.yaml # NZBHydra2 (Usenet Browsing)
# - stacks/media/readarr.yaml # Readarr (Ebook Downloads)
# - stacks/media/calibre.yaml # Calibre (Books Management)
# - stacks/media/calibre-web.yaml # Calibre Web-UI
Expand Down
12 changes: 12 additions & 0 deletions docs/applications/media.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,18 @@ based on information given in nzb-files.

<img src="https://i.imgur.com/rt7Pbj9.png" width="220" alt="SABnzbd Logo">

## nzbhydra

[![](https://img.shields.io/static/v1?message=linuxserver/nzbhydra2&logo=docker&label=docker&color=blue)](https://hub.docker.com/r/linuxserver/nzbhydra2)
[![](https://img.shields.io/static/v1?message=theotherp/nzbhydra2&logo=github&label=github)](https://github.com/theotherp/nzbhydra2)

<img src="https://i.imgur.com/1OGtKxA.png" width="300" alt="SABnzbd Logo">

NZBHydra 2 is a meta search for newznab indexers and torznab trackers.
It provides easy access to newznab indexers and many torznab trackers via Jackett.
You can search all your indexers and trackers from one place and use it as an indexer
source for tools like Sonarr, Radarr, Lidarr or CouchPotato.

### Configuration

The files at `appdata/media/sabnzbd/sabnzbd.ini` needs to be modified
Expand Down
28 changes: 28 additions & 0 deletions stacks/media/nzbhydra.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#######################################
# nzbhydra (USENET DOWNLOADING)
#######################################

services:
nzbhydra:
container_name: nzbhydra
image: lscr.io/linuxserver/nzbhydra2:latest
profiles: ["media", "all"]
volumes:
- ${DOCKER_DIRECTORY}/appdata/media/nzbhydra:/config
- ${COMPLETED_DOWNLOADS}:/downloads
environment:
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
security_opt:
- no-new-privileges:true
restart: ${UNIVERSAL_RESTART_POLICY:-unless-stopped}
networks:
traefik:
labels:
traefik.enable: true
traefik.http.routers.nzbhydra-rtr.rule: Host(`${NZBHYDRA_DOMAIN:-nzbhydra}.${DOMAIN_NAME}`)
traefik.http.routers.nzbhydra-rtr.entrypoints: websecure
traefik.http.routers.nzbhydra-rtr.service: nzbhydra-svc
traefik.http.services.nzbhydra-svc.loadbalancer.server.port: 5076
traefik.http.routers.nzbhydra-rtr.middlewares: chain-oauth-google@file

0 comments on commit 12249d3

Please sign in to comment.