Skip to content

Commit

Permalink
Runs update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Workflow committed Sep 21, 2023
1 parent 1ed450b commit b008ff8
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 37 deletions.
6 changes: 3 additions & 3 deletions 25/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ RUN { \
} > /etc/apache2/conf-available/apache-limits.conf; \
a2enconf apache-limits

ENV NEXTCLOUD_VERSION 25.0.11
ENV NEXTCLOUD_VERSION 25.0.12

RUN set -ex; \
fetchDeps=" \
Expand All @@ -147,8 +147,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
Expand Down
6 changes: 3 additions & 3 deletions 25/fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,16 @@ RUN { \
VOLUME /var/www/html


ENV NEXTCLOUD_VERSION 25.0.11
ENV NEXTCLOUD_VERSION 25.0.12

RUN set -ex; \
apk add --no-cache --virtual .fetch-deps \
bzip2 \
gnupg \
; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
Expand Down
6 changes: 3 additions & 3 deletions 25/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ RUN { \
VOLUME /var/www/html


ENV NEXTCLOUD_VERSION 25.0.11
ENV NEXTCLOUD_VERSION 25.0.12

RUN set -ex; \
fetchDeps=" \
Expand All @@ -132,8 +132,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
Expand Down
6 changes: 3 additions & 3 deletions 26/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ RUN { \
} > /etc/apache2/conf-available/apache-limits.conf; \
a2enconf apache-limits

ENV NEXTCLOUD_VERSION 26.0.6
ENV NEXTCLOUD_VERSION 26.0.7

RUN set -ex; \
fetchDeps=" \
Expand All @@ -148,8 +148,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
Expand Down
6 changes: 3 additions & 3 deletions 26/fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -111,16 +111,16 @@ RUN { \
VOLUME /var/www/html


ENV NEXTCLOUD_VERSION 26.0.6
ENV NEXTCLOUD_VERSION 26.0.7

RUN set -ex; \
apk add --no-cache --virtual .fetch-deps \
bzip2 \
gnupg \
; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
Expand Down
6 changes: 3 additions & 3 deletions 26/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ RUN { \
VOLUME /var/www/html


ENV NEXTCLOUD_VERSION 26.0.6
ENV NEXTCLOUD_VERSION 26.0.7

RUN set -ex; \
fetchDeps=" \
Expand All @@ -133,8 +133,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
Expand Down
6 changes: 3 additions & 3 deletions 27/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ RUN { \
} > /etc/apache2/conf-available/apache-limits.conf; \
a2enconf apache-limits

ENV NEXTCLOUD_VERSION 27.1.0
ENV NEXTCLOUD_VERSION 27.1.1

RUN set -ex; \
fetchDeps=" \
Expand All @@ -148,8 +148,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
Expand Down
6 changes: 3 additions & 3 deletions 27/fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -111,16 +111,16 @@ RUN { \
VOLUME /var/www/html


ENV NEXTCLOUD_VERSION 27.1.0
ENV NEXTCLOUD_VERSION 27.1.1

RUN set -ex; \
apk add --no-cache --virtual .fetch-deps \
bzip2 \
gnupg \
; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
Expand Down
6 changes: 3 additions & 3 deletions 27/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ RUN { \
VOLUME /var/www/html


ENV NEXTCLOUD_VERSION 27.1.0
ENV NEXTCLOUD_VERSION 27.1.1

RUN set -ex; \
fetchDeps=" \
Expand All @@ -133,8 +133,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2.asc"; \
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2"; \
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \
Expand Down
2 changes: 1 addition & 1 deletion latest.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
27.1.0
27.1.1
18 changes: 9 additions & 9 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"27": {
"branch": "27",
"version": "27.1.0",
"url": "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2",
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2.asc",
"version": "27.1.1",
"url": "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2",
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2.asc",
"variants": {
"apache": {
"variant": "apache",
Expand All @@ -27,9 +27,9 @@
},
"26": {
"branch": "26",
"version": "26.0.6",
"url": "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2",
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2.asc",
"version": "26.0.7",
"url": "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2",
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2.asc",
"variants": {
"apache": {
"variant": "apache",
Expand All @@ -53,9 +53,9 @@
},
"25": {
"branch": "25",
"version": "25.0.11",
"url": "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2",
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2.asc",
"version": "25.0.12",
"url": "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2",
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2.asc",
"variants": {
"apache": {
"variant": "apache",
Expand Down

0 comments on commit b008ff8

Please sign in to comment.