Skip to content

Commit a43854a

Browse files
author
GitHub Workflow
committed
Runs update.sh
1 parent e0294b6 commit a43854a

11 files changed

Lines changed: 43 additions & 34 deletions

File tree

28/apache/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ RUN set -ex; \
2121
# see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html
2222
ENV PHP_MEMORY_LIMIT 512M
2323
ENV PHP_UPLOAD_LIMIT 512M
24+
ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
2425
RUN 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'; \

28/fpm-alpine/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,12 @@ RUN set -ex; \
8989
# see https://docs.nextcloud.com/server/latest/admin_manual/installation/server_tuning.html#enable-php-opcache
9090
ENV PHP_MEMORY_LIMIT 512M
9191
ENV PHP_UPLOAD_LIMIT 512M
92+
ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
9293
RUN { \
9394
echo 'opcache.enable=1'; \
9495
echo 'opcache.interned_strings_buffer=32'; \
9596
echo 'opcache.max_accelerated_files=10000'; \
96-
echo 'opcache.memory_consumption=128'; \
97+
echo 'opcache.memory_consumption=${PHP_OPCACHE_MEMORY_CONSUMPTION}'; \
9798
echo 'opcache.save_comments=1'; \
9899
echo 'opcache.revalidate_freq=60'; \
99100
echo 'opcache.jit=1255'; \

28/fpm/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ RUN set -ex; \
2121
# see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html
2222
ENV PHP_MEMORY_LIMIT 512M
2323
ENV PHP_UPLOAD_LIMIT 512M
24+
ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
2425
RUN 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'; \

29/apache/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ RUN set -ex; \
2121
# see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html
2222
ENV PHP_MEMORY_LIMIT 512M
2323
ENV PHP_UPLOAD_LIMIT 512M
24+
ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
2425
RUN 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

145146
RUN 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; \

29/fpm-alpine/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,12 @@ RUN set -ex; \
8989
# see https://docs.nextcloud.com/server/latest/admin_manual/installation/server_tuning.html#enable-php-opcache
9090
ENV PHP_MEMORY_LIMIT 512M
9191
ENV PHP_UPLOAD_LIMIT 512M
92+
ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
9293
RUN { \
9394
echo 'opcache.enable=1'; \
9495
echo 'opcache.interned_strings_buffer=32'; \
9596
echo 'opcache.max_accelerated_files=10000'; \
96-
echo 'opcache.memory_consumption=128'; \
97+
echo 'opcache.memory_consumption=${PHP_OPCACHE_MEMORY_CONSUMPTION}'; \
9798
echo 'opcache.save_comments=1'; \
9899
echo 'opcache.revalidate_freq=60'; \
99100
echo 'opcache.jit=1255'; \
@@ -120,16 +121,16 @@ RUN { \
120121
VOLUME /var/www/html
121122

122123

123-
ENV NEXTCLOUD_VERSION 29.0.10
124+
ENV NEXTCLOUD_VERSION 29.0.11
124125

125126
RUN set -ex; \
126127
apk add --no-cache --virtual .fetch-deps \
127128
bzip2 \
128129
gnupg \
129130
; \
130131
\
131-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2"; \
132-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2.asc"; \
132+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.11.tar.bz2"; \
133+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.11.tar.bz2.asc"; \
133134
export GNUPGHOME="$(mktemp -d)"; \
134135
# gpg key from https://nextcloud.com/nextcloud.asc
135136
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

29/fpm/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ RUN set -ex; \
2121
# see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html
2222
ENV PHP_MEMORY_LIMIT 512M
2323
ENV PHP_UPLOAD_LIMIT 512M
24+
ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
2425
RUN 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'; \
@@ -125,7 +126,7 @@ RUN { \
125126
VOLUME /var/www/html
126127

127128

128-
ENV NEXTCLOUD_VERSION 29.0.10
129+
ENV NEXTCLOUD_VERSION 29.0.11
129130

130131
RUN set -ex; \
131132
fetchDeps=" \
@@ -135,8 +136,8 @@ RUN set -ex; \
135136
apt-get update; \
136137
apt-get install -y --no-install-recommends $fetchDeps; \
137138
\
138-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2"; \
139-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.10.tar.bz2.asc"; \
139+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-29.0.11.tar.bz2"; \
140+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-29.0.11.tar.bz2.asc"; \
140141
export GNUPGHOME="$(mktemp -d)"; \
141142
# gpg key from https://nextcloud.com/nextcloud.asc
142143
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

30/apache/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ RUN set -ex; \
2121
# see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html
2222
ENV PHP_MEMORY_LIMIT 512M
2323
ENV PHP_UPLOAD_LIMIT 512M
24+
ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
2425
RUN 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 30.0.4
144+
ENV NEXTCLOUD_VERSION 30.0.5
144145

145146
RUN 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-30.0.4.tar.bz2"; \
154-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2.asc"; \
154+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.5.tar.bz2"; \
155+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.5.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; \

30/fpm-alpine/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,12 @@ RUN set -ex; \
8989
# see https://docs.nextcloud.com/server/latest/admin_manual/installation/server_tuning.html#enable-php-opcache
9090
ENV PHP_MEMORY_LIMIT 512M
9191
ENV PHP_UPLOAD_LIMIT 512M
92+
ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
9293
RUN { \
9394
echo 'opcache.enable=1'; \
9495
echo 'opcache.interned_strings_buffer=32'; \
9596
echo 'opcache.max_accelerated_files=10000'; \
96-
echo 'opcache.memory_consumption=128'; \
97+
echo 'opcache.memory_consumption=${PHP_OPCACHE_MEMORY_CONSUMPTION}'; \
9798
echo 'opcache.save_comments=1'; \
9899
echo 'opcache.revalidate_freq=60'; \
99100
echo 'opcache.jit=1255'; \
@@ -120,16 +121,16 @@ RUN { \
120121
VOLUME /var/www/html
121122

122123

123-
ENV NEXTCLOUD_VERSION 30.0.4
124+
ENV NEXTCLOUD_VERSION 30.0.5
124125

125126
RUN set -ex; \
126127
apk add --no-cache --virtual .fetch-deps \
127128
bzip2 \
128129
gnupg \
129130
; \
130131
\
131-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2"; \
132-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2.asc"; \
132+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.5.tar.bz2"; \
133+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.5.tar.bz2.asc"; \
133134
export GNUPGHOME="$(mktemp -d)"; \
134135
# gpg key from https://nextcloud.com/nextcloud.asc
135136
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

30/fpm/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ RUN set -ex; \
2121
# see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html
2222
ENV PHP_MEMORY_LIMIT 512M
2323
ENV PHP_UPLOAD_LIMIT 512M
24+
ENV PHP_OPCACHE_MEMORY_CONSUMPTION 128
2425
RUN 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'; \
@@ -125,7 +126,7 @@ RUN { \
125126
VOLUME /var/www/html
126127

127128

128-
ENV NEXTCLOUD_VERSION 30.0.4
129+
ENV NEXTCLOUD_VERSION 30.0.5
129130

130131
RUN set -ex; \
131132
fetchDeps=" \
@@ -135,8 +136,8 @@ RUN set -ex; \
135136
apt-get update; \
136137
apt-get install -y --no-install-recommends $fetchDeps; \
137138
\
138-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2"; \
139-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.4.tar.bz2.asc"; \
139+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.5.tar.bz2"; \
140+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.5.tar.bz2.asc"; \
140141
export GNUPGHOME="$(mktemp -d)"; \
141142
# gpg key from https://nextcloud.com/nextcloud.asc
142143
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

latest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30.0.4
1+
30.0.5

0 commit comments

Comments
 (0)