Skip to content

Commit 9e471d2

Browse files
authored
Merge pull request #118 from linuxserver/3.17
Rebase to 3.17
2 parents c80e384 + 24c5ea0 commit 9e471d2

9 files changed

+31
-11
lines changed
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Comment on invalid interaction
2+
on:
3+
issues:
4+
types:
5+
- labeled
6+
jobs:
7+
add-comment-on-invalid:
8+
if: github.event.label.name == 'invalid'
9+
permissions:
10+
issues: write
11+
uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
12+
secrets: inherit

.github/workflows/external_trigger.yml

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

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:3.16
1+
# syntax=docker/dockerfile:1
2+
3+
FROM ghcr.io/linuxserver/baseimage-alpine:3.17
24

35
# set version label
46
ARG BUILD_DATE
@@ -14,7 +16,7 @@ ENV DATADIR=$MYSQL_DIR/databases
1416
RUN \
1517
echo "**** install runtime packages ****" && \
1618
if [ -z ${MARIADB_VERSION+x} ]; then \
17-
MARIADB_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.16/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
19+
MARIADB_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.17/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
1820
&& awk '/^P:mariadb$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
1921
fi && \
2022
apk add --no-cache \

Dockerfile.aarch64

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16
1+
# syntax=docker/dockerfile:1
2+
3+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17
24

35
# set version label
46
ARG BUILD_DATE
@@ -14,7 +16,7 @@ ENV DATADIR=$MYSQL_DIR/databases
1416
RUN \
1517
echo "**** install runtime packages ****" && \
1618
if [ -z ${MARIADB_VERSION+x} ]; then \
17-
MARIADB_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.16/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
19+
MARIADB_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.17/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
1820
&& awk '/^P:mariadb$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
1921
fi && \
2022
apk add --no-cache \

Dockerfile.armhf

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16
1+
# syntax=docker/dockerfile:1
2+
3+
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.17
24

35
# set version label
46
ARG BUILD_DATE
@@ -14,7 +16,7 @@ ENV DATADIR=$MYSQL_DIR/databases
1416
RUN \
1517
echo "**** install runtime packages ****" && \
1618
if [ -z ${MARIADB_VERSION+x} ]; then \
17-
MARIADB_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.16/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
19+
MARIADB_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.17/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
1820
&& awk '/^P:mariadb$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
1921
fi && \
2022
apk add --no-cache \

Jenkinsfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ pipeline {
2525
DEV_DOCKERHUB_IMAGE = 'lsiodev/mariadb'
2626
PR_DOCKERHUB_IMAGE = 'lspipepr/mariadb'
2727
DIST_IMAGE = 'alpine'
28-
DIST_TAG = '3.16'
29-
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.16/main/'
28+
DIST_TAG = '3.17'
29+
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.17/main/'
3030
DIST_REPO_PACKAGES = 'mariadb'
3131
MULTIARCH='true'
3232
CI='true'

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
284284

285285
## Versions
286286

287+
* **31.01.23:** - Rebase to 3.17.
287288
* **09.12.22:** - Add upgrade check warning.
288289
* **11.10.22:** - Rebase master to Alpine 3.16, migrate to s6v3, remove password escape logic which caused problems for a small subset of users.
289290
* **06.07.21:** - Rebase master to alpine.

jenkins-vars.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ repo_vars:
1515
- DEV_DOCKERHUB_IMAGE = 'lsiodev/mariadb'
1616
- PR_DOCKERHUB_IMAGE = 'lspipepr/mariadb'
1717
- DIST_IMAGE = 'alpine'
18-
- DIST_TAG = '3.16'
19-
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.16/main/'
18+
- DIST_TAG = '3.17'
19+
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.17/main/'
2020
- DIST_REPO_PACKAGES = 'mariadb'
2121
- MULTIARCH='true'
2222
- CI='true'

readme-vars.yml

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ app_setup_block: |
104104
105105
# changelog
106106
changelogs:
107+
- { date: "31.01.23:", desc: "Rebase to 3.17." }
107108
- { date: "09.12.22:", desc: "Add upgrade check warning." }
108109
- { date: "11.10.22:", desc: "Rebase master to Alpine 3.16, migrate to s6v3, remove password escape logic which caused problems for a small subset of users." }
109110
- { date: "06.07.21:", desc: "Rebase master to alpine." }

0 commit comments

Comments
 (0)