Skip to content

Commit 5567249

Browse files
authored
Merge pull request #22 from linuxserver/3.21
Rebase to Alpine 3.21
2 parents 8e88355 + 64d6477 commit 5567249

7 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/external_trigger.yml

100755100644
File mode changed.

Dockerfile

Lines changed: 1 addition & 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-nginx:3.20
3+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.21
44

55
# set version label
66
ARG BUILD_DATE

Dockerfile.aarch64

Lines changed: 1 addition & 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-nginx:arm64v8-3.20
3+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.21
44

55
# set version label
66
ARG BUILD_DATE

README.md

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

348348
## Versions
349349

350+
* **06.04.25:** - Rebase to Alpine 3.21.
350351
* **30.06.24:** - Rebase to Alpine 3.20. Existing users should update their nginx confs to avoid http2 deprecation warnings.
351352
* **24.03.24:** - Added LDAP module to composer
352353
* **06.03.24:** - Existing users should update: site-confs/default.conf - Cleanup default site conf.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ init_diagram: |
157157
"kimai:latest" <- Base Images
158158
# changelog
159159
changelogs:
160+
- {date: "06.04.25:", desc: "Rebase to Alpine 3.21."}
160161
- {date: "30.06.24:", desc: "Rebase to Alpine 3.20. Existing users should update their nginx confs to avoid http2 deprecation warnings."}
161162
- {date: "24.03.24:", desc: "Added LDAP module to composer"}
162163
- {date: "06.03.24:", desc: "Existing users should update: site-confs/default.conf - Cleanup default site conf."}

root/donate.txt

100755100644
File mode changed.

root/etc/s6-overlay/s6-rc.d/init-kimai-config/run

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ if [[ ! -L /app/www/config/packages/local.yaml ]]; then
3636
ln -s /config/local.yaml /app/www/config/packages/local.yaml
3737
fi
3838

39+
# Clear cache on image upgade
40+
if [[ ! -f /dbwait.lock ]];then
41+
rm -rf /config/www/var/cache/*
42+
fi
43+
3944
DB_HOST=$(php -r 'echo parse_url(getenv("DATABASE_URL"), PHP_URL_HOST);')
4045
DB_PORT=$(php -r 'echo parse_url(getenv("DATABASE_URL"), PHP_URL_PORT) ?? 3306;')
4146

0 commit comments

Comments
 (0)