Skip to content

Commit b2f58e3

Browse files
authored
Merge pull request #26 from linuxserver/sqlite
add sqlite support
2 parents f657115 + 92e589b commit b2f58e3

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ RUN \
2525
php7-pecl-imagick \
2626
php7-pdo_mysql \
2727
php7-pdo_pgsql \
28+
php7-pdo_sqlite \
29+
php7-sqlite3 \
2830
php7-xml \
2931
php7-zip && \
3032
echo "**** install dokuwiki ****" && \

Dockerfile.aarch64

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ RUN \
2525
php7-pecl-imagick \
2626
php7-pdo_mysql \
2727
php7-pdo_pgsql \
28+
php7-pdo_sqlite \
29+
php7-sqlite3 \
2830
php7-xml \
2931
php7-zip && \
3032
echo "**** install dokuwiki ****" && \

Dockerfile.armhf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ RUN \
2525
php7-pecl-imagick \
2626
php7-pdo_mysql \
2727
php7-pdo_pgsql \
28+
php7-pdo_sqlite \
29+
php7-sqlite3 \
2830
php7-xml \
2931
php7-zip && \
3032
echo "**** install dokuwiki ****" && \

README.md

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

219219
## Versions
220220

221+
* **28.09.20:** - Add php7-pdo_sqlite and php7-sqlite3.
221222
* **23.09.20:** - Fix php-local.ini bug introduced in the prior PR.
222223
* **14.09.20:** - Rebase to alpine 3.12. Add php7-ctype, php7-curl, php7-pdo_mysql, php7-pdo_pgsql, php7-pecl-imagick and php7-iconv. Bump upload max filesize and post max size to 100MB. Remove deprecated APP_URL env var. Fix breaking addons.
223224
* **19.12.19:** - Rebasing to alpine 3.11.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ app_setup_block: |
4040
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 }})
4141
# changelog
4242
changelogs:
43+
- { date: "28.09.20:", desc: "Add php7-pdo_sqlite and php7-sqlite3." }
4344
- { date: "23.09.20:", desc: "Fix php-local.ini bug introduced in the prior PR." }
4445
- { date: "14.09.20:", desc: "Rebase to alpine 3.12. Add php7-ctype, php7-curl, php7-pdo_mysql, php7-pdo_pgsql, php7-pecl-imagick and php7-iconv. Bump upload max filesize and post max size to 100MB. Remove deprecated APP_URL env var. Fix breaking addons."}
4546
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }

0 commit comments

Comments
 (0)