Skip to content

Commit b008ff8

Browse files
author
GitHub Workflow
committed
Runs update.sh
1 parent 1ed450b commit b008ff8

11 files changed

Lines changed: 37 additions & 37 deletions

File tree

25/apache/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ RUN { \
137137
} > /etc/apache2/conf-available/apache-limits.conf; \
138138
a2enconf apache-limits
139139

140-
ENV NEXTCLOUD_VERSION 25.0.11
140+
ENV NEXTCLOUD_VERSION 25.0.12
141141

142142
RUN set -ex; \
143143
fetchDeps=" \
@@ -147,8 +147,8 @@ RUN set -ex; \
147147
apt-get update; \
148148
apt-get install -y --no-install-recommends $fetchDeps; \
149149
\
150-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2"; \
151-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2.asc"; \
150+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2"; \
151+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2.asc"; \
152152
export GNUPGHOME="$(mktemp -d)"; \
153153
# gpg key from https://nextcloud.com/nextcloud.asc
154154
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

25/fpm-alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,16 +110,16 @@ RUN { \
110110
VOLUME /var/www/html
111111

112112

113-
ENV NEXTCLOUD_VERSION 25.0.11
113+
ENV NEXTCLOUD_VERSION 25.0.12
114114

115115
RUN set -ex; \
116116
apk add --no-cache --virtual .fetch-deps \
117117
bzip2 \
118118
gnupg \
119119
; \
120120
\
121-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2"; \
122-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2.asc"; \
121+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2"; \
122+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2.asc"; \
123123
export GNUPGHOME="$(mktemp -d)"; \
124124
# gpg key from https://nextcloud.com/nextcloud.asc
125125
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

25/fpm/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ RUN { \
122122
VOLUME /var/www/html
123123

124124

125-
ENV NEXTCLOUD_VERSION 25.0.11
125+
ENV NEXTCLOUD_VERSION 25.0.12
126126

127127
RUN set -ex; \
128128
fetchDeps=" \
@@ -132,8 +132,8 @@ RUN set -ex; \
132132
apt-get update; \
133133
apt-get install -y --no-install-recommends $fetchDeps; \
134134
\
135-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2"; \
136-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.11.tar.bz2.asc"; \
135+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2"; \
136+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-25.0.12.tar.bz2.asc"; \
137137
export GNUPGHOME="$(mktemp -d)"; \
138138
# gpg key from https://nextcloud.com/nextcloud.asc
139139
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

26/apache/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ RUN { \
138138
} > /etc/apache2/conf-available/apache-limits.conf; \
139139
a2enconf apache-limits
140140

141-
ENV NEXTCLOUD_VERSION 26.0.6
141+
ENV NEXTCLOUD_VERSION 26.0.7
142142

143143
RUN set -ex; \
144144
fetchDeps=" \
@@ -148,8 +148,8 @@ RUN set -ex; \
148148
apt-get update; \
149149
apt-get install -y --no-install-recommends $fetchDeps; \
150150
\
151-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2"; \
152-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2.asc"; \
151+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2"; \
152+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2.asc"; \
153153
export GNUPGHOME="$(mktemp -d)"; \
154154
# gpg key from https://nextcloud.com/nextcloud.asc
155155
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

26/fpm-alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,16 @@ RUN { \
111111
VOLUME /var/www/html
112112

113113

114-
ENV NEXTCLOUD_VERSION 26.0.6
114+
ENV NEXTCLOUD_VERSION 26.0.7
115115

116116
RUN set -ex; \
117117
apk add --no-cache --virtual .fetch-deps \
118118
bzip2 \
119119
gnupg \
120120
; \
121121
\
122-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2"; \
123-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2.asc"; \
122+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2"; \
123+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2.asc"; \
124124
export GNUPGHOME="$(mktemp -d)"; \
125125
# gpg key from https://nextcloud.com/nextcloud.asc
126126
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

26/fpm/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ RUN { \
123123
VOLUME /var/www/html
124124

125125

126-
ENV NEXTCLOUD_VERSION 26.0.6
126+
ENV NEXTCLOUD_VERSION 26.0.7
127127

128128
RUN set -ex; \
129129
fetchDeps=" \
@@ -133,8 +133,8 @@ RUN set -ex; \
133133
apt-get update; \
134134
apt-get install -y --no-install-recommends $fetchDeps; \
135135
\
136-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2"; \
137-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.6.tar.bz2.asc"; \
136+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2"; \
137+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.7.tar.bz2.asc"; \
138138
export GNUPGHOME="$(mktemp -d)"; \
139139
# gpg key from https://nextcloud.com/nextcloud.asc
140140
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

27/apache/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ RUN { \
138138
} > /etc/apache2/conf-available/apache-limits.conf; \
139139
a2enconf apache-limits
140140

141-
ENV NEXTCLOUD_VERSION 27.1.0
141+
ENV NEXTCLOUD_VERSION 27.1.1
142142

143143
RUN set -ex; \
144144
fetchDeps=" \
@@ -148,8 +148,8 @@ RUN set -ex; \
148148
apt-get update; \
149149
apt-get install -y --no-install-recommends $fetchDeps; \
150150
\
151-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2"; \
152-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2.asc"; \
151+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2"; \
152+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2.asc"; \
153153
export GNUPGHOME="$(mktemp -d)"; \
154154
# gpg key from https://nextcloud.com/nextcloud.asc
155155
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

27/fpm-alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,16 @@ RUN { \
111111
VOLUME /var/www/html
112112

113113

114-
ENV NEXTCLOUD_VERSION 27.1.0
114+
ENV NEXTCLOUD_VERSION 27.1.1
115115

116116
RUN set -ex; \
117117
apk add --no-cache --virtual .fetch-deps \
118118
bzip2 \
119119
gnupg \
120120
; \
121121
\
122-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2"; \
123-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2.asc"; \
122+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2"; \
123+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2.asc"; \
124124
export GNUPGHOME="$(mktemp -d)"; \
125125
# gpg key from https://nextcloud.com/nextcloud.asc
126126
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

27/fpm/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ RUN { \
123123
VOLUME /var/www/html
124124

125125

126-
ENV NEXTCLOUD_VERSION 27.1.0
126+
ENV NEXTCLOUD_VERSION 27.1.1
127127

128128
RUN set -ex; \
129129
fetchDeps=" \
@@ -133,8 +133,8 @@ RUN set -ex; \
133133
apt-get update; \
134134
apt-get install -y --no-install-recommends $fetchDeps; \
135135
\
136-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2"; \
137-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.0.tar.bz2.asc"; \
136+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2"; \
137+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-27.1.1.tar.bz2.asc"; \
138138
export GNUPGHOME="$(mktemp -d)"; \
139139
# gpg key from https://nextcloud.com/nextcloud.asc
140140
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-
27.1.0
1+
27.1.1

0 commit comments

Comments
 (0)