Compare commits

...

4 commits

Author SHA1 Message Date
306bb788c9 update nextcloud to 27.0.2 2023-08-11 09:37:44 +02:00
59038d9a9f feat: add postgres php modules
adds postgres headers and the php modules for pdo_pgsql so you can run
nextcloud with a postgres database backend
2023-08-11 09:36:59 +02:00
1aa8a340d6 Merge pull request 'chore: update nextcloud to 27.0.1' (#28) from 27.0.1 into master
Reviewed-on: #28
2023-08-02 23:08:34 +02:00
496313a1ed chore: update nextcloud to 27.0.1 2023-07-25 21:51:40 +02:00

View file

@ -1,6 +1,6 @@
FROM php:8.2-apache FROM php:8.2-apache
ENV NEXTCLOUD_VERSION 26.0.4 ENV NEXTCLOUD_VERSION 27.0.2
RUN \ RUN \
apt-get update && \ apt-get update && \
@ -25,6 +25,7 @@ RUN \
libjpeg-dev \ libjpeg-dev \
libgmp-dev \ libgmp-dev \
curl \ curl \
libpq-dev \
cron && \ cron && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
@ -61,7 +62,9 @@ RUN \
bcmath \ bcmath \
sysvsem \ sysvsem \
pcntl \ pcntl \
opcache && \ opcache \
pdo_pgsql \
pdo && \
CFLAGS="-I/usr/src/php" docker-php-ext-install xmlreader CFLAGS="-I/usr/src/php" docker-php-ext-install xmlreader
RUN \ RUN \