@@ -21,6 +21,7 @@ RUN set -ex; \
2121# see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html
2222ENV PHP_MEMORY_LIMIT 512M
2323ENV PHP_UPLOAD_LIMIT 512M
24+ ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
2425RUN set -ex; \
2526 \
2627 savedAptMark="$(apt-mark showmanual)" ; \
@@ -98,7 +99,7 @@ RUN { \
9899 echo 'opcache.enable=1' ; \
99100 echo 'opcache.interned_strings_buffer=32' ; \
100101 echo 'opcache.max_accelerated_files=10000' ; \
101- echo 'opcache.memory_consumption=128 ' ; \
102+ echo 'opcache.memory_consumption=${PHP_OPCACHE_MEMORY_CONSUMPTION} ' ; \
102103 echo 'opcache.save_comments=1' ; \
103104 echo 'opcache.revalidate_freq=60' ; \
104105 echo 'opcache.jit=1255' ; \
@@ -140,7 +141,7 @@ RUN { \
140141 } > /etc/apache2/conf-available/apache-limits.conf; \
141142 a2enconf apache-limits
142143
143- ENV NEXTCLOUD_VERSION 29.0.10
144+ ENV NEXTCLOUD_VERSION 29.0.11
144145
145146RUN set -ex; \
146147 fetchDeps=" \
@@ -150,8 +151,8 @@ RUN set -ex; \
150151 apt-get update; \
151152 apt-get install -y --no-install-recommends $fetchDeps; \
152153 \
153- curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.10 .tar.bz2" ; \
154- curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.10 .tar.bz2.asc" ; \
154+ curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.11 .tar.bz2" ; \
155+ curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.11 .tar.bz2.asc" ; \
155156 export GNUPGHOME="$(mktemp -d)" ; \
156157# gpg key from https://nextcloud.com/nextcloud.asc
157158 gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
0 commit comments