Skip to content
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
20 changes: 10 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.21
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.22

# set version label
ARG BUILD_DATE
Expand All @@ -16,15 +16,15 @@ RUN \
echo "**** install runtime packages ****" && \
apk add --no-cache \
imagemagick \
php83-bz2 \
php83-dom \
php83-gd \
php83-ldap \
php83-pdo_mysql \
php83-pdo_pgsql \
php83-pdo_sqlite \
php83-pecl-imagick \
php83-sqlite3 && \
php84-bz2 \
php84-dom \
php84-gd \
php84-ldap \
php84-pdo_mysql \
php84-pdo_pgsql \
php84-pdo_sqlite \
php84-pecl-imagick \
php84-sqlite3 && \
echo "**** install dokuwiki ****" && \
if [ -z ${DOKUWIKI_RELEASE+x} ]; then \
DOKUWIKI_RELEASE=$(wget https://download.dokuwiki.org/rss -O - 2>/dev/null | \
Expand Down
20 changes: 10 additions & 10 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.21
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.22

# set version label
ARG BUILD_DATE
Expand All @@ -16,15 +16,15 @@ RUN \
echo "**** install runtime packages ****" && \
apk add --no-cache \
imagemagick \
php83-bz2 \
php83-dom \
php83-gd \
php83-ldap \
php83-pdo_mysql \
php83-pdo_pgsql \
php83-pdo_sqlite \
php83-pecl-imagick \
php83-sqlite3 && \
php84-bz2 \
php84-dom \
php84-gd \
php84-ldap \
php84-pdo_mysql \
php84-pdo_pgsql \
php84-pdo_sqlite \
php84-pecl-imagick \
php84-sqlite3 && \
echo "**** install dokuwiki ****" && \
if [ -z ${DOKUWIKI_RELEASE+x} ]; then \
DOKUWIKI_RELEASE=$(wget https://download.dokuwiki.org/rss -O - 2>/dev/null | \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **05.07.25:** - Rebase to Alpine 3.22.
* **10.05.25:** - Rebase to Alpine 3.21.
* **31.05.24:** - Rebase to Alpine 3.20. Existing users should update their nginx confs to avoid http2 deprecation warnings.
* **23.01.24:** - Rebase to Alpine 3.19 with php 8.3.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ init_diagram: |
"dokuwiki:latest" <- Base Images
# changelog
changelogs:
- {date: "05.07.25:", desc: "Rebase to Alpine 3.22."}
- {date: "10.05.25:", desc: "Rebase to Alpine 3.21."}
- {date: "31.05.24:", desc: "Rebase to Alpine 3.20. Existing users should update their nginx confs to avoid http2 deprecation warnings."}
- {date: "23.01.24:", desc: "Rebase to Alpine 3.19 with php 8.3."}
Expand Down