Rebase to 3.17, restore GNU findutils package.

This commit is contained in:
TheSpad
2023-01-05 10:08:07 +00:00
parent f386553d6e
commit 5d4f17a599
12 changed files with 28 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
name: Comment on invalid interaction
on:
issues:
types:
- labeled
jobs:
add-comment-on-invalid:
if: github.event.label.name == 'invalid'
permissions:
issues: write
uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
secrets: inherit

View File

@@ -18,7 +18,7 @@ jobs:
fi
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_TRANSMISSION_MASTER\". ****"
echo "**** Retrieving external version ****"
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.16/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.17/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
&& awk '/^P:'"transmission-daemon"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://')
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
echo "**** Can't retrieve external version, exiting ****"

View File

@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:3.16
FROM ghcr.io/linuxserver/baseimage-alpine:3.17
ARG UNRAR_VERSION=6.1.7
ARG BUILD_DATE
@@ -17,6 +17,7 @@ RUN \
gcc && \
echo "**** install packages ****" && \
apk add --no-cache \
findutils \
openssl \
p7zip \
python3 \

View File

@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17
ARG UNRAR_VERSION=6.1.7
ARG BUILD_DATE
@@ -17,6 +17,7 @@ RUN \
gcc && \
echo "**** install packages ****" && \
apk add --no-cache \
findutils \
openssl \
p7zip \
python3 \

View File

@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.17
ARG UNRAR_VERSION=6.1.7
ARG BUILD_DATE
@@ -17,6 +17,7 @@ RUN \
gcc && \
echo "**** install packages ****" && \
apk add --no-cache \
findutils \
openssl \
p7zip \
python3 \

4
Jenkinsfile vendored
View File

@@ -25,8 +25,8 @@ pipeline {
DEV_DOCKERHUB_IMAGE = 'lsiodev/transmission'
PR_DOCKERHUB_IMAGE = 'lspipepr/transmission'
DIST_IMAGE = 'alpine'
DIST_TAG = '3.16'
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.16/community/'
DIST_TAG = '3.17'
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.17/community/'
DIST_REPO_PACKAGES = 'transmission-daemon'
MULTIARCH='true'
CI='true'

View File

@@ -275,6 +275,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **05.01.23:** - Rebase to Alpine 3.17, restore GNU findutils package.
* **02.11.22:** - Rebase to Alpine 3.16, migrate to s6v3.
* **12.08.22:** - Bump unrar to 6.1.7.
* **03.04.22:** - Add Transmissionic as a UI option.

View File

@@ -15,8 +15,8 @@ repo_vars:
- DEV_DOCKERHUB_IMAGE = 'lsiodev/transmission'
- PR_DOCKERHUB_IMAGE = 'lspipepr/transmission'
- DIST_IMAGE = 'alpine'
- DIST_TAG = '3.16'
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.16/community/'
- DIST_TAG = '3.17'
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.17/community/'
- DIST_REPO_PACKAGES = 'transmission-daemon'
- MULTIARCH='true'
- CI='true'

View File

@@ -83,6 +83,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "05.01.23:", desc: "Rebase to Alpine 3.17, restore GNU findutils package." }
- { date: "02.11.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3." }
- { date: "12.08.22:", desc: "Bump unrar to 6.1.7." }
- { date: "03.04.22:", desc: "Add Transmissionic as a UI option." }

View File

@@ -1,4 +1,5 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash
# make folders
mkdir -p \

View File

@@ -1,4 +1,5 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash
exec \
/usr/sbin/crond -f -S -l 0 -c /etc/crontabs

View File

@@ -1,4 +1,5 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 9091" \
s6-setuidgid abc /usr/bin/transmission-daemon \