Compare commits

...
Sign in to create a new pull request.

6 commits
master ... 30

Author SHA1 Message Date
d5223ada2f chore(nextcloud): update to 3.0.12 2025-06-13 18:03:50 +02:00
14e8cc49e7 chore: update nextcloud to 30.0.11 2025-05-20 15:52:05 +02:00
fe24d31407 chore: update to 30.0.10 2025-04-18 10:39:04 +02:00
5e384e7b10 chore(nextcloud): update to 30.0.9 2025-04-11 22:49:07 +02:00
1f06fb628e update 30.0.8 2025-04-07 21:32:20 +02:00
6a572d7133 update to 27.1.11 2024-06-28 23:42:27 +02:00

View file

@ -1,6 +1,6 @@
FROM php:8.2-apache
FROM php:8.3-apache
ENV NEXTCLOUD_VERSION 27.1.10
ENV NEXTCLOUD_VERSION 30.0.12
RUN \
apt-get update && \
@ -71,8 +71,10 @@ RUN \
RUN \
pecl install -o -f apcu && \
pecl install -o -f redis && \
rm -rf /tmp/pear && \
docker-php-ext-enable apcu
docker-php-ext-enable apcu && \
docker-php-ext-enable redis
# compile imagick from master branch as there isn't any release for php8 yet.
RUN \