Merge pull request #28 from linuxserver/pdo_mysql

Replace php mysqli with php pdo_pgsql
This commit is contained in:
Eric Nemchik 2023-12-07 10:15:29 -06:00 committed by GitHub
commit 286ab1ea08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,7 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache \
php82-gd \
php82-mysqli \
php82-pdo_mysql \
php82-pdo_pgsql \
php82-pdo_sqlite && \
echo "**** install librespeed ****" && \

View File

@ -13,7 +13,7 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache \
php82-gd \
php82-mysqli \
php82-pdo_mysql \
php82-pdo_pgsql \
php82-pdo_sqlite && \
echo "**** install librespeed ****" && \

View File

@ -64,6 +64,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "06.12.23:", desc: "Replace php mysqli with php pdo_pgsql." }
- { date: "25.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
- { date: "14.05.23:", desc: "Added support for ipinfo.io" }
- { date: "20.01.23:", desc: "Rebase to alpine 3.17 with php8.1." }