Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebase to 3.20 (master) #166

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FROM ghcr.io/linuxserver/unrar:latest as unrar

FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:3.20 as buildstage

# set NZBGET version
ARG NZBGET_RELEASE
Expand Down Expand Up @@ -57,7 +57,7 @@ RUN \
curl -o /app/nzbget/cacert.pem -L "https://curl.se/ca/cacert.pem"

# Runtime Stage
FROM ghcr.io/linuxserver/baseimage-alpine:3.19
FROM ghcr.io/linuxserver/baseimage-alpine:3.20

# set version label
ARG BUILD_DATE
Expand All @@ -72,7 +72,7 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache \
7zip \
boost1.82-json \
boost1.84-json \
libxml2 \
libxslt \
openssl \
Expand All @@ -82,10 +82,11 @@ RUN \
pip install -U --no-cache-dir \
pip \
wheel && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.20/ \
apprise \
pynzb \
requests && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
Expand Down
9 changes: 5 additions & 4 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FROM ghcr.io/linuxserver/unrar:arm64v8-latest as unrar

FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19 as buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20 as buildstage

# set NZBGET version
ARG NZBGET_RELEASE
Expand Down Expand Up @@ -57,7 +57,7 @@ RUN \
curl -o /app/nzbget/cacert.pem -L "https://curl.se/ca/cacert.pem"

# Runtime Stage
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20

# set version label
ARG BUILD_DATE
Expand All @@ -72,7 +72,7 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache \
7zip \
boost1.82-json \
boost1.84-json \
libxml2 \
libxslt \
openssl \
Expand All @@ -82,10 +82,11 @@ RUN \
pip install -U --no-cache-dir \
pip \
wheel && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.20/ \
apprise \
pynzb \
requests && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ services:
- NZBGET_PASS=tegbzn6789 #optional
volumes:
- /path/to/nzbget/data:/config
- /path/to/nzbget/downloads:/downloads #optional
- /path/to/downloads:/downloads #optional
ports:
- 6789:6789
restart: unless-stopped
Expand All @@ -126,7 +126,7 @@ docker run -d \
-e NZBGET_PASS=tegbzn6789 `#optional` \
-p 6789:6789 \
-v /path/to/nzbget/data:/config \
-v /path/to/nzbget/downloads:/downloads `#optional` \
-v /path/to/downloads:/downloads `#optional` \
--restart unless-stopped \
lscr.io/linuxserver/nzbget:latest
```
Expand Down Expand Up @@ -307,4 +307,5 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **09.05.24:** - Revive image based on the fork from https://github.com/nzbgetcom/nzbget
* **31.05.24:** - Rebase to Alpine 3.20.
* **09.05.24:** - Revive image based on the fork from https://github.com/nzbgetcom/nzbget.
8 changes: 4 additions & 4 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,14 @@ param_container_name: "{{ project_name }}"
param_usage_include_env: true
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/nzbget/data", desc: "Persistent config" }
- { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Persistent config" }
opt_param_usage_include_vols: true
opt_param_volumes:
- { vol_path: "/downloads", vol_host_path: "/path/to/nzbget/downloads", desc: "Location of downloads on disk." }
- { vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Location of downloads on disk." }
param_usage_include_ports: true
param_ports:
- { external_port: "6789", internal_port: "6789", port_desc: "WebUI" }


# optional container parameters
# optional variables
opt_param_usage_include_env: true
Expand Down Expand Up @@ -66,4 +65,5 @@ app_setup_block: |

# changelog
changelogs:
- { date: "09.05.24:", desc: "Revive image based on the fork from https://github.com/nzbgetcom/nzbget" }
- { date: "31.05.24:", desc: "Rebase to Alpine 3.20." }
- { date: "09.05.24:", desc: "Revive image based on the fork from https://github.com/nzbgetcom/nzbget." }