-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Update Nextcloud #20669
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Update Nextcloud #20669
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Diff for 69a8a6d:diff --git a/_bashbrew-cat b/_bashbrew-cat
index e921f03..c556720 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -16,17 +16,17 @@ Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
GitCommit: b91ae50a73884f5b086ad03e61d30e219b376ebb
Directory: 31/fpm-alpine
-Tags: 32.0.4-apache, 32.0-apache, 32-apache, apache, 32.0.4, 32.0, 32, latest
+Tags: 32.0.5-apache, 32.0-apache, 32-apache, apache, 32.0.5, 32.0, 32, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
-GitCommit: b91ae50a73884f5b086ad03e61d30e219b376ebb
+GitCommit: 0af85f2377ad19bb60bf14ac7d8573ab1fe8affa
Directory: 32/apache
-Tags: 32.0.4-fpm, 32.0-fpm, 32-fpm, fpm
+Tags: 32.0.5-fpm, 32.0-fpm, 32-fpm, fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
-GitCommit: b91ae50a73884f5b086ad03e61d30e219b376ebb
+GitCommit: 0af85f2377ad19bb60bf14ac7d8573ab1fe8affa
Directory: 32/fpm
-Tags: 32.0.4-fpm-alpine, 32.0-fpm-alpine, 32-fpm-alpine, fpm-alpine
+Tags: 32.0.5-fpm-alpine, 32.0-fpm-alpine, 32-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
-GitCommit: b91ae50a73884f5b086ad03e61d30e219b376ebb
+GitCommit: 0af85f2377ad19bb60bf14ac7d8573ab1fe8affa
Directory: 32/fpm-alpine
diff --git a/_bashbrew-list b/_bashbrew-list
index 2fc5844..771868e 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -18,10 +18,10 @@ nextcloud:32.0
nextcloud:32.0-apache
nextcloud:32.0-fpm
nextcloud:32.0-fpm-alpine
-nextcloud:32.0.4
-nextcloud:32.0.4-apache
-nextcloud:32.0.4-fpm
-nextcloud:32.0.4-fpm-alpine
+nextcloud:32.0.5
+nextcloud:32.0.5-apache
+nextcloud:32.0.5-fpm
+nextcloud:32.0.5-fpm-alpine
nextcloud:apache
nextcloud:fpm
nextcloud:fpm-alpine
diff --git a/nextcloud_fpm-alpine/Dockerfile b/nextcloud_fpm-alpine/Dockerfile
index c5465b6..73d8db8 100644
--- a/nextcloud_fpm-alpine/Dockerfile
+++ b/nextcloud_fpm-alpine/Dockerfile
@@ -128,7 +128,7 @@ RUN { \
VOLUME /var/www/html
-ENV NEXTCLOUD_VERSION 32.0.4
+ENV NEXTCLOUD_VERSION 32.0.5
RUN set -ex; \
apk add --no-cache --virtual .fetch-deps \
@@ -136,8 +136,8 @@ RUN set -ex; \
gnupg \
; \
\
- curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.4/nextcloud-32.0.4.tar.bz2"; \
- curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.4/nextcloud-32.0.4.tar.bz2.asc"; \
+ curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.5/nextcloud-32.0.5.tar.bz2"; \
+ curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.5/nextcloud-32.0.5.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
diff --git a/nextcloud_fpm/Dockerfile b/nextcloud_fpm/Dockerfile
index 6663633..edbce90 100644
--- a/nextcloud_fpm/Dockerfile
+++ b/nextcloud_fpm/Dockerfile
@@ -135,7 +135,7 @@ RUN { \
VOLUME /var/www/html
-ENV NEXTCLOUD_VERSION 32.0.4
+ENV NEXTCLOUD_VERSION 32.0.5
RUN set -ex; \
fetchDeps=" \
@@ -145,8 +145,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
- curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.4/nextcloud-32.0.4.tar.bz2"; \
- curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.4/nextcloud-32.0.4.tar.bz2.asc"; \
+ curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.5/nextcloud-32.0.5.tar.bz2"; \
+ curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.5/nextcloud-32.0.5.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
diff --git a/nextcloud_latest/Dockerfile b/nextcloud_latest/Dockerfile
index 1d87ff7..4f003f5 100644
--- a/nextcloud_latest/Dockerfile
+++ b/nextcloud_latest/Dockerfile
@@ -150,7 +150,7 @@ RUN { \
} > /etc/apache2/conf-available/apache-limits.conf; \
a2enconf apache-limits
-ENV NEXTCLOUD_VERSION 32.0.4
+ENV NEXTCLOUD_VERSION 32.0.5
RUN set -ex; \
fetchDeps=" \
@@ -160,8 +160,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
- curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.4/nextcloud-32.0.4.tar.bz2"; \
- curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.4/nextcloud-32.0.4.tar.bz2.asc"; \
+ curl -fsSL -o nextcloud.tar.bz2 "https://github.com/nextcloud-releases/server/releases/download/v32.0.5/nextcloud-32.0.5.tar.bz2"; \
+ curl -fsSL -o nextcloud.tar.bz2.asc "https://github.com/nextcloud-releases/server/releases/download/v32.0.5/nextcloud-32.0.5.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \Relevant Maintainers:
|
yosifkit
approved these changes
Jan 16, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.