Skip to content

Commit 3d465b6

Browse files
authored
Merge pull request #69 from linuxserver/3.19
Rebase to Alpine 3.19
2 parents e42d167 + 4c526c3 commit 3d465b6

File tree

3 files changed

+22
-21
lines changed

3 files changed

+22
-21
lines changed

Dockerfile

Lines changed: 10 additions & 10 deletions
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.18
3+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.19
44

55
# set version label
66
ARG BUILD_DATE
@@ -16,15 +16,15 @@ RUN \
1616
echo "**** install runtime packages ****" && \
1717
apk add --no-cache \
1818
imagemagick \
19-
php82-bz2 \
20-
php82-dom \
21-
php82-gd \
22-
php82-ldap \
23-
php82-pdo_mysql \
24-
php82-pdo_pgsql \
25-
php82-pdo_sqlite \
26-
php82-pecl-imagick \
27-
php82-sqlite3 && \
19+
php83-bz2 \
20+
php83-dom \
21+
php83-gd \
22+
php83-ldap \
23+
php83-pdo_mysql \
24+
php83-pdo_pgsql \
25+
php83-pdo_sqlite \
26+
php83-pecl-imagick \
27+
php83-sqlite3 && \
2828
echo "**** install dokuwiki ****" && \
2929
if [ -z ${DOKUWIKI_RELEASE+x} ]; then \
3030
DOKUWIKI_RELEASE=$(wget https://download.dokuwiki.org/rss -O - 2>/dev/null | \

Dockerfile.aarch64

Lines changed: 10 additions & 10 deletions
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.18
3+
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.19
44

55
# set version label
66
ARG BUILD_DATE
@@ -16,15 +16,15 @@ RUN \
1616
echo "**** install runtime packages ****" && \
1717
apk add --no-cache \
1818
imagemagick \
19-
php82-bz2 \
20-
php82-dom \
21-
php82-gd \
22-
php82-ldap \
23-
php82-pdo_mysql \
24-
php82-pdo_pgsql \
25-
php82-pdo_sqlite \
26-
php82-pecl-imagick \
27-
php82-sqlite3 && \
19+
php83-bz2 \
20+
php83-dom \
21+
php83-gd \
22+
php83-ldap \
23+
php83-pdo_mysql \
24+
php83-pdo_pgsql \
25+
php83-pdo_sqlite \
26+
php83-pecl-imagick \
27+
php83-sqlite3 && \
2828
echo "**** install dokuwiki ****" && \
2929
if [ -z ${DOKUWIKI_RELEASE+x} ]; then \
3030
DOKUWIKI_RELEASE=$(wget https://download.dokuwiki.org/rss -O - 2>/dev/null | \

readme-vars.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ param_env_vars:
2121
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
2222
param_usage_include_vols: true
2323
param_volumes:
24-
- { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Configuration files." }
24+
- { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files" }
2525
param_usage_include_ports: true
2626
param_ports:
2727
- { external_port: "80", internal_port: "80", port_desc: "Application HTTP Port" }
@@ -39,6 +39,7 @@ app_setup_block: |
3939
Upon first install go to `http://$IP:$PORT/install.php` once you have completed the setup, restart the container, login as admin and set "Use nice URLs" in the `admin/Configuration Settings` panel to `.htaccess` and tick `Use slash as namespace separator in URLs` to enable [nice URLs](https://www.dokuwiki.org/rewrite) you will find the webui at `http://$IP:$PORT/`, for more info see [{{ project_name|capitalize }}]({{ project_url }})
4040
# changelog
4141
changelogs:
42+
- { date: "23.01.24:", desc: "Rebase to Alpine 3.19 with php 8.3."}
4243
- { date: "25.12.23:", desc: "Existing users should update: site-confs/default.conf - Cleanup default site conf." }
4344
- { date: "21.07.23:", desc: "Update built-in plugins on container update." }
4445
- { date: "25.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }

0 commit comments

Comments
 (0)