Skip to content

Commit 5ac25f7

Browse files
authored
Merge pull request #1 from linuxserver/nzbhydra2
Correct Name
2 parents 421e722 + 3286b4d commit 5ac25f7

10 files changed

Lines changed: 90 additions & 88 deletions

File tree

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ If you are new to Docker or this application our issue tracker is **ONLY** used
3131
<!--- Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container -->
3232

3333
## Docker logs
34-
<!--- Provide a full docker log, output of "docker logs hydra2" -->
34+
<!--- Provide a full docker log, output of "docker logs nzbhydra2" -->

Dockerfile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM lsiobase/ubuntu:bionic
33
# set version label
44
ARG BUILD_DATE
55
ARG VERSION
6-
ARG HYDRA2_RELEASE
6+
ARG NZBHYDRA2_RELEASE
77
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
88
LABEL maintainer="nemchik"
99

@@ -20,21 +20,21 @@ RUN \
2020
apt-get install --no-install-recommends -y \
2121
openjdk-11-jre-headless \
2222
python3 && \
23-
echo "**** install hydra2 ****" && \
24-
if [ -z ${HYDRA2_RELEASE+x} ]; then \
25-
HYDRA2_RELEASE=$(curl -sX GET "https://api.github.com/repos/theotherp/nzbhydra2/releases/latest" \
23+
echo "**** install nzbhydra2 ****" && \
24+
if [ -z ${NZBHYDRA2_RELEASE+x} ]; then \
25+
NZBHYDRA2_RELEASE=$(curl -sX GET "https://api.github.com/repos/theotherp/nzbhydra2/releases/latest" \
2626
| jq -r .tag_name); \
2727
fi && \
28-
HYDRA2_VER=${HYDRA2_RELEASE#v} && \
28+
NZBHYDRA2_VER=${NZBHYDRA2_RELEASE#v} && \
2929
curl -o \
30-
/tmp/hydra2.zip -L \
31-
"https://github.com/theotherp/nzbhydra2/releases/download/v${HYDRA2_VER}/nzbhydra2-${HYDRA2_VER}-linux.zip" && \
32-
mkdir -p /app/hydra2 && \
33-
unzip /tmp/hydra2.zip -d /app/hydra2 && \
30+
/tmp/nzbhydra2.zip -L \
31+
"https://github.com/theotherp/nzbhydra2/releases/download/v${NZBHYDRA2_VER}/nzbhydra2-${NZBHYDRA2_VER}-linux.zip" && \
32+
mkdir -p /app/nzbhydra2 && \
33+
unzip /tmp/nzbhydra2.zip -d /app/nzbhydra2 && \
3434
curl -o \
35-
/app/hydra2/nzbhydra2wrapperPy3.py -L \
35+
/app/nzbhydra2/nzbhydra2wrapperPy3.py -L \
3636
"https://raw.githubusercontent.com/theotherp/nzbhydra2/master/other/wrapper/nzbhydra2wrapperPy3.py" && \
37-
chmod +x /app/hydra2/nzbhydra2wrapperPy3.py && \
37+
chmod +x /app/nzbhydra2/nzbhydra2wrapperPy3.py && \
3838
echo "**** cleanup ****" && \
3939
rm -rf \
4040
/tmp/* \

Dockerfile.aarch64

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM lsiobase/ubuntu:arm64v8-bionic
33
# set version label
44
ARG BUILD_DATE
55
ARG VERSION
6-
ARG HYDRA2_RELEASE
6+
ARG NZBHYDRA2_RELEASE
77
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
88
LABEL maintainer="nemchik"
99

@@ -20,21 +20,21 @@ RUN \
2020
apt-get install --no-install-recommends -y \
2121
openjdk-11-jre-headless \
2222
python3 && \
23-
echo "**** install hydra2 ****" && \
24-
if [ -z ${HYDRA2_RELEASE+x} ]; then \
25-
HYDRA2_RELEASE=$(curl -sX GET "https://api.github.com/repos/theotherp/nzbhydra2/releases/latest" \
23+
echo "**** install nzbhydra2 ****" && \
24+
if [ -z ${NZBHYDRA2_RELEASE+x} ]; then \
25+
NZBHYDRA2_RELEASE=$(curl -sX GET "https://api.github.com/repos/theotherp/nzbhydra2/releases/latest" \
2626
| jq -r .tag_name); \
2727
fi && \
28-
HYDRA2_VER=${HYDRA2_RELEASE#v} && \
28+
NZBHYDRA2_VER=${NZBHYDRA2_RELEASE#v} && \
2929
curl -o \
30-
/tmp/hydra2.zip -L \
31-
"https://github.com/theotherp/nzbhydra2/releases/download/v${HYDRA2_VER}/nzbhydra2-${HYDRA2_VER}-linux.zip" && \
32-
mkdir -p /app/hydra2 && \
33-
unzip /tmp/hydra2.zip -d /app/hydra2 && \
30+
/tmp/nzbhydra2.zip -L \
31+
"https://github.com/theotherp/nzbhydra2/releases/download/v${NZBHYDRA2_VER}/nzbhydra2-${NZBHYDRA2_VER}-linux.zip" && \
32+
mkdir -p /app/nzbhydra2 && \
33+
unzip /tmp/nzbhydra2.zip -d /app/nzbhydra2 && \
3434
curl -o \
35-
/app/hydra2/nzbhydra2wrapperPy3.py -L \
35+
/app/nzbhydra2/nzbhydra2wrapperPy3.py -L \
3636
"https://raw.githubusercontent.com/theotherp/nzbhydra2/master/other/wrapper/nzbhydra2wrapperPy3.py" && \
37-
chmod +x /app/hydra2/nzbhydra2wrapperPy3.py && \
37+
chmod +x /app/nzbhydra2/nzbhydra2wrapperPy3.py && \
3838
echo "**** cleanup ****" && \
3939
rm -rf \
4040
/tmp/* \

Dockerfile.armhf

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM lsiobase/ubuntu:arm32v7-bionic
33
# set version label
44
ARG BUILD_DATE
55
ARG VERSION
6-
ARG HYDRA2_RELEASE
6+
ARG NZBHYDRA2_RELEASE
77
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
88
LABEL maintainer="nemchik"
99

@@ -20,21 +20,21 @@ RUN \
2020
apt-get install --no-install-recommends -y \
2121
openjdk-11-jre-headless \
2222
python3 && \
23-
echo "**** install hydra2 ****" && \
24-
if [ -z ${HYDRA2_RELEASE+x} ]; then \
25-
HYDRA2_RELEASE=$(curl -sX GET "https://api.github.com/repos/theotherp/nzbhydra2/releases/latest" \
23+
echo "**** install nzbhydra2 ****" && \
24+
if [ -z ${NZBHYDRA2_RELEASE+x} ]; then \
25+
NZBHYDRA2_RELEASE=$(curl -sX GET "https://api.github.com/repos/theotherp/nzbhydra2/releases/latest" \
2626
| jq -r .tag_name); \
2727
fi && \
28-
HYDRA2_VER=${HYDRA2_RELEASE#v} && \
28+
NZBHYDRA2_VER=${NZBHYDRA2_RELEASE#v} && \
2929
curl -o \
30-
/tmp/hydra2.zip -L \
31-
"https://github.com/theotherp/nzbhydra2/releases/download/v${HYDRA2_VER}/nzbhydra2-${HYDRA2_VER}-linux.zip" && \
32-
mkdir -p /app/hydra2 && \
33-
unzip /tmp/hydra2.zip -d /app/hydra2 && \
30+
/tmp/nzbhydra2.zip -L \
31+
"https://github.com/theotherp/nzbhydra2/releases/download/v${NZBHYDRA2_VER}/nzbhydra2-${NZBHYDRA2_VER}-linux.zip" && \
32+
mkdir -p /app/nzbhydra2 && \
33+
unzip /tmp/nzbhydra2.zip -d /app/nzbhydra2 && \
3434
curl -o \
35-
/app/hydra2/nzbhydra2wrapperPy3.py -L \
35+
/app/nzbhydra2/nzbhydra2wrapperPy3.py -L \
3636
"https://raw.githubusercontent.com/theotherp/nzbhydra2/master/other/wrapper/nzbhydra2wrapperPy3.py" && \
37-
chmod +x /app/hydra2/nzbhydra2wrapperPy3.py && \
37+
chmod +x /app/nzbhydra2/nzbhydra2wrapperPy3.py && \
3838
echo "**** cleanup ****" && \
3939
rm -rf \
4040
/tmp/* \

Jenkinsfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ pipeline {
1919
EXT_GIT_BRANCH = 'master'
2020
EXT_USER = 'theotherp'
2121
EXT_REPO = 'nzbhydra2'
22-
BUILD_VERSION_ARG = 'HYDRA2_RELEASE'
22+
BUILD_VERSION_ARG = 'NZBHYDRA2_RELEASE'
2323
LS_USER = 'linuxserver'
24-
LS_REPO = 'docker-hydra2'
25-
CONTAINER_NAME = 'hydra2'
26-
DOCKERHUB_IMAGE = 'linuxserver/hydra2'
27-
DEV_DOCKERHUB_IMAGE = 'lsiodev/hydra2'
28-
PR_DOCKERHUB_IMAGE = 'lspipepr/hydra2'
24+
LS_REPO = 'docker-nzbhydra2'
25+
CONTAINER_NAME = 'nzbhydra2'
26+
DOCKERHUB_IMAGE = 'linuxserver/nzbhydra2'
27+
DEV_DOCKERHUB_IMAGE = 'lsiodev/nzbhydra2'
28+
PR_DOCKERHUB_IMAGE = 'lspipepr/nzbhydra2'
2929
DIST_IMAGE = 'ubuntu'
3030
MULTIARCH='true'
3131
CI='true'

README.md

Lines changed: 37 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -23,31 +23,31 @@ Find us at:
2323
* [GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
2424
* [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
2525

26-
# [linuxserver/hydra2](https://github.com/linuxserver/docker-hydra2)
26+
# [linuxserver/nzbhydra2](https://github.com/linuxserver/docker-nzbhydra2)
2727

28-
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-hydra2.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-hydra2)
29-
[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-hydra2.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-hydra2/releases)
30-
[![GitHub Package Repository](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitHub%20Package&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-hydra2/packages)
31-
[![GitLab Container Registry](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab&logoColor=FFFFFF)](https://gitlab.com/Linuxserver.io/docker-hydra2/container_registry)
32-
[![Quay.io](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Quay.io)](https://quay.io/repository/linuxserver.io/hydra2)
33-
[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/hydra2.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/hydra2 "Get your own version badge on microbadger.com")
34-
[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/hydra2.svg?style=flat-square&color=E68523&label=pulls&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/hydra2)
35-
[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/hydra2.svg?style=flat-square&color=E68523&label=stars&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/hydra2)
36-
[![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-hydra2/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-hydra2/job/master/)
37-
[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/hydra2/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/hydra2/latest/index.html)
28+
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-nzbhydra2.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-nzbhydra2)
29+
[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-nzbhydra2.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-nzbhydra2/releases)
30+
[![GitHub Package Repository](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitHub%20Package&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-nzbhydra2/packages)
31+
[![GitLab Container Registry](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab&logoColor=FFFFFF)](https://gitlab.com/Linuxserver.io/docker-nzbhydra2/container_registry)
32+
[![Quay.io](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Quay.io)](https://quay.io/repository/linuxserver.io/nzbhydra2)
33+
[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/nzbhydra2.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/nzbhydra2 "Get your own version badge on microbadger.com")
34+
[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/nzbhydra2.svg?style=flat-square&color=E68523&label=pulls&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/nzbhydra2)
35+
[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/nzbhydra2.svg?style=flat-square&color=E68523&label=stars&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/nzbhydra2)
36+
[![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-nzbhydra2/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-nzbhydra2/job/master/)
37+
[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/nzbhydra2/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/nzbhydra2/latest/index.html)
3838

39-
[Hydra2](https://github.com/theotherp/nzbhydra2) is a meta search application for NZB indexers, the "spiritual successor" to NZBmegasearcH, and an evolution of the original application [NZBHydra](https://github.com/theotherp/nzbhydra).
39+
[Nzbhydra2](https://github.com/theotherp/nzbhydra2) is a meta search application for NZB indexers, the "spiritual successor" to NZBmegasearcH, and an evolution of the original application [NZBHydra](https://github.com/theotherp/nzbhydra).
4040

41-
It provides easy access to a number of raw and newznab based indexers. The application NZBHydra 2 is replacing NZBHydra 1 and supports migrating from V1. Be wary that there may be some compatibility issues for those migrating from V1 to V2, so ensure you back up your old configuration before moving over to the new version. **NOTE:** The last version that supports migration is `linuxserver/hydra2:v2.10.2-ls49`
41+
It provides easy access to a number of raw and newznab based indexers. The application NZBHydra 2 is replacing NZBHydra 1 and supports migrating from V1. Be wary that there may be some compatibility issues for those migrating from V1 to V2, so ensure you back up your old configuration before moving over to the new version. **NOTE:** The last version that supports migration is `linuxserver/nzbhydra2:v2.10.2-ls49`
4242

4343

44-
[![hydra2](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/hydra-icon.png)](https://github.com/theotherp/nzbhydra2)
44+
[![nzbhydra2](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/hydra-icon.png)](https://github.com/theotherp/nzbhydra2)
4545

4646
## Supported Architectures
4747

4848
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
4949

50-
Simply pulling `linuxserver/hydra2` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50+
Simply pulling `linuxserver/nzbhydra2` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
5151

5252
The architectures supported by this image are:
5353

@@ -74,15 +74,15 @@ Here are some example snippets to help you get started creating a container.
7474

7575
```
7676
docker create \
77-
--name=hydra2 \
77+
--name=nzbhydra2 \
7878
-e PUID=1000 \
7979
-e PGID=1000 \
8080
-e TZ=Europe/London \
8181
-p 5076:5076 \
8282
-v <path to data>:/config \
8383
-v <nzb download>:/downloads \
8484
--restart unless-stopped \
85-
linuxserver/hydra2
85+
linuxserver/nzbhydra2
8686
```
8787

8888

@@ -94,9 +94,9 @@ Compatible with docker-compose v2 schemas.
9494
---
9595
version: "2.1"
9696
services:
97-
hydra2:
98-
image: linuxserver/hydra2
99-
container_name: hydra2
97+
nzbhydra2:
98+
image: linuxserver/nzbhydra2
99+
container_name: nzbhydra2
100100
environment:
101101
- PUID=1000
102102
- PGID=1000
@@ -119,7 +119,7 @@ Container images are configured using parameters passed at runtime (such as thos
119119
| `-e PUID=1000` | for UserID - see below for explanation |
120120
| `-e PGID=1000` | for GroupID - see below for explanation |
121121
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. |
122-
| `-v /config` | Where hydra2 should store config files. |
122+
| `-v /config` | Where nzbhydra2 should store config files. |
123123
| `-v /downloads` | NZB download folder. |
124124

125125
## Environment variables from files (Docker secrets)
@@ -155,19 +155,19 @@ The web interface is at `<your ip>:5076` , to set up indexers and connections to
155155

156156

157157
## Docker Mods
158-
[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27hydra2%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=hydra2 "view available mods for this container.")
158+
[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27nzbhydra2%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=nzbhydra2 "view available mods for this container.")
159159

160160
We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) can be accessed via the dynamic badge above.
161161

162162

163163
## Support Info
164164

165-
* Shell access whilst the container is running: `docker exec -it hydra2 /bin/bash`
166-
* To monitor the logs of the container in realtime: `docker logs -f hydra2`
165+
* Shell access whilst the container is running: `docker exec -it nzbhydra2 /bin/bash`
166+
* To monitor the logs of the container in realtime: `docker logs -f nzbhydra2`
167167
* container version number
168-
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' hydra2`
168+
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' nzbhydra2`
169169
* image version number
170-
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/hydra2`
170+
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/nzbhydra2`
171171

172172
## Updating Info
173173

@@ -176,18 +176,18 @@ Most of our images are static, versioned, and require an image update and contai
176176
Below are the instructions for updating containers:
177177

178178
### Via Docker Run/Create
179-
* Update the image: `docker pull linuxserver/hydra2`
180-
* Stop the running container: `docker stop hydra2`
181-
* Delete the container: `docker rm hydra2`
179+
* Update the image: `docker pull linuxserver/nzbhydra2`
180+
* Stop the running container: `docker stop nzbhydra2`
181+
* Delete the container: `docker rm nzbhydra2`
182182
* Recreate a new container with the same docker create parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
183-
* Start the new container: `docker start hydra2`
183+
* Start the new container: `docker start nzbhydra2`
184184
* You can also remove the old dangling images: `docker image prune`
185185

186186
### Via Docker Compose
187187
* Update all images: `docker-compose pull`
188-
* or update a single image: `docker-compose pull hydra2`
188+
* or update a single image: `docker-compose pull nzbhydra2`
189189
* Let compose update all containers as necessary: `docker-compose up -d`
190-
* or update a single container: `docker-compose up -d hydra2`
190+
* or update a single container: `docker-compose up -d nzbhydra2`
191191
* You can also remove the old dangling images: `docker image prune`
192192

193193
### Via Watchtower auto-updater (especially useful if you don't remember the original parameters)
@@ -196,7 +196,7 @@ Below are the instructions for updating containers:
196196
docker run --rm \
197197
-v /var/run/docker.sock:/var/run/docker.sock \
198198
containrrr/watchtower \
199-
--run-once hydra2
199+
--run-once nzbhydra2
200200
```
201201

202202
**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using Docker Compose.
@@ -207,12 +207,12 @@ Below are the instructions for updating containers:
207207

208208
If you want to make local modifications to these images for development purposes or just to customize the logic:
209209
```
210-
git clone https://github.com/linuxserver/docker-hydra2.git
211-
cd docker-hydra2
210+
git clone https://github.com/linuxserver/docker-nzbhydra2.git
211+
cd docker-nzbhydra2
212212
docker build \
213213
--no-cache \
214214
--pull \
215-
-t linuxserver/hydra2:latest .
215+
-t linuxserver/nzbhydra2:latest .
216216
```
217217

218218
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
@@ -224,6 +224,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
224224

225225
## Versions
226226

227+
* **14.04.20:** - Correct Name, Hydra2 -> NZBHydra2.
227228
* **08.01.20:** - Switch to python3.
228229
* **05.01.20:** - Add dev tag for prereleases.
229230
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.

jenkins-vars.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# jenkins variables
4-
project_name: docker-hydra2
4+
project_name: docker-nzbhydra2
55
external_type: github_stable
66
release_type: stable
77
release_tag: latest
@@ -10,13 +10,13 @@ repo_vars:
1010
- EXT_GIT_BRANCH = 'master'
1111
- EXT_USER = 'theotherp'
1212
- EXT_REPO = 'nzbhydra2'
13-
- BUILD_VERSION_ARG = 'HYDRA2_RELEASE'
13+
- BUILD_VERSION_ARG = 'NZBHYDRA2_RELEASE'
1414
- LS_USER = 'linuxserver'
15-
- LS_REPO = 'docker-hydra2'
16-
- CONTAINER_NAME = 'hydra2'
17-
- DOCKERHUB_IMAGE = 'linuxserver/hydra2'
18-
- DEV_DOCKERHUB_IMAGE = 'lsiodev/hydra2'
19-
- PR_DOCKERHUB_IMAGE = 'lspipepr/hydra2'
15+
- LS_REPO = 'docker-nzbhydra2'
16+
- CONTAINER_NAME = 'nzbhydra2'
17+
- DOCKERHUB_IMAGE = 'linuxserver/nzbhydra2'
18+
- DEV_DOCKERHUB_IMAGE = 'lsiodev/nzbhydra2'
19+
- PR_DOCKERHUB_IMAGE = 'lspipepr/nzbhydra2'
2020
- DIST_IMAGE = 'ubuntu'
2121
- MULTIARCH='true'
2222
- CI='true'

0 commit comments

Comments
 (0)