Skip to content

Commit 84c7560

Browse files
authored
Merge pull request #104 from linuxserver/master-3.20
Rebase to 3.20 (master)
2 parents a277772 + c7c0a4d commit 84c7560

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:3.19
3+
FROM ghcr.io/linuxserver/baseimage-alpine:3.20
44

55
# set version label
66
ARG BUILD_DATE
@@ -33,6 +33,7 @@ RUN \
3333
/tmp/lidarr.tar.gz -C \
3434
/app/lidarr/bin --strip-components=1 && \
3535
echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://linuxserver.io)" > /app/lidarr/package_info && \
36+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3637
echo "**** cleanup ****" && \
3738
rm -rf \
3839
/app/lidarr/bin/Lidarr.Update \

Dockerfile.aarch64

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19
3+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20
44

55
# set version label
66
ARG BUILD_DATE
@@ -33,6 +33,7 @@ RUN \
3333
/tmp/lidarr.tar.gz -C \
3434
/app/lidarr/bin --strip-components=1 && \
3535
echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://linuxserver.io)" > /app/lidarr/package_info && \
36+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3637
echo "**** cleanup ****" && \
3738
rm -rf \
3839
/app/lidarr/bin/Lidarr.Update \

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pipeline {
3131
CI_PORT='8686'
3232
CI_SSL='false'
3333
CI_DELAY='120'
34-
CI_DOCKERENV='TZ=US/Pacific'
34+
CI_DOCKERENV=''
3535
CI_AUTH=''
3636
CI_WEBPATH='/system/status'
3737
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
299299

300300
## Versions
301301

302+
* **31.05.24:** - Rebase Alpine 3.20.
302303
* **20.03.24:** - Rebase Alpine 3.19.
303304
* **06.06.23:** - Rebase master to Alpine 3.18, deprecate armhf as per [https://www.linuxserver.io/armhf](https://www.linuxserver.io/armhf).
304305
* **17.01.23:** - Rebase master branch to Alpine 3.17, migrate to s6v3.

jenkins-vars.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ custom_version_command: curl -sL "https://lidarr.servarr.com/v1/update/master/ch
66
release_type: stable
77
release_tag: latest
88
ls_branch: master
9-
build_armhf: false
109
repo_vars:
1110
- BUILD_VERSION_ARG = 'LIDARR_RELEASE'
1211
- LS_USER = 'linuxserver'
@@ -22,7 +21,7 @@ repo_vars:
2221
- CI_PORT='8686'
2322
- CI_SSL='false'
2423
- CI_DELAY='120'
25-
- CI_DOCKERENV='TZ=US/Pacific'
24+
- CI_DOCKERENV=''
2625
- CI_AUTH=''
2726
- CI_WEBPATH='/system/status'
2827
sponsor_links:

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ app_setup_block: |
5353
5454
# changelog
5555
changelogs:
56+
- { date: "31.05.24:", desc: "Rebase Alpine 3.20." }
5657
- { date: "20.03.24:", desc: "Rebase Alpine 3.19." }
5758
- { date: "06.06.23:", desc: "Rebase master to Alpine 3.18, deprecate armhf as per [https://www.linuxserver.io/armhf](https://www.linuxserver.io/armhf)." }
5859
- { date: "17.01.23:", desc: "Rebase master branch to Alpine 3.17, migrate to s6v3." }

root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/bin/bash
22

3-
PORT=$(xmlstarlet sel -T -t -v /Config/Port /config/config.xml)
3+
if [[ -f /config/config.xml ]]; then
4+
PORT=$(xmlstarlet sel -T -t -v /Config/Port /config/config.xml)
5+
fi
46

57
if [[ $(curl -sL "http://localhost:${PORT:-8686}/ping" | jq -r '.status' 2>/dev/null) = "OK" ]]; then
68
exit 0

0 commit comments

Comments
 (0)