Skip to content

Commit c5799a8

Browse files
authored
Merge pull request #203 from nextcloud/prepare-28.0.13
build(nc): bump to NC 28.0.14
2 parents 292d7ef + 0850b31 commit c5799a8

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
FROM ubuntu:22.04
2424

25-
ADD https://download.nextcloud.com/server/releases/nextcloud-28.0.7.tar.bz2 /root/nextcloud.tar.bz2
26-
ADD https://github.com/nextcloud-releases/richdocuments/releases/download/v8.3.8/richdocuments-v8.3.8.tar.gz /root/richdocuments.tar.gz
27-
ADD https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v9.2.2/onlyoffice.tar.gz /root/onlyoffice.tar.gz
25+
ADD https://download.nextcloud.com/server/releases/nextcloud-28.0.14.tar.bz2 /root/nextcloud.tar.bz2
26+
ADD https://github.com/nextcloud-releases/richdocuments/releases/download/v8.3.13/richdocuments-v8.3.13.tar.gz /root/richdocuments.tar.gz
27+
ADD https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v9.5.0/onlyoffice.tar.gz /root/onlyoffice.tar.gz
2828
COPY resources/entrypoint.sh /usr/sbin/
2929
COPY resources/60-nextcloud.ini /etc/php/8.1/apache2/conf.d/
3030
COPY resources/60-nextcloud.ini /etc/php/8.1/cli/conf.d/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1919

2020
app_name=nextcloud
21-
app_version=28.0.7-0
21+
app_version=28.0.14-0
2222
app_upgrade_from=27.1.6-0
2323

2424
ucs_version=5.0

setup

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ $OCC upgrade 2>&1>> "$UPGRADE_LOGFILE"
111111
error_msg "The upgrade log is written to $UPGRADE_LOGFILE within the nextcloud container"
112112

113113
# basic Nextcloud configuration
114-
eval "$(cat \"$NC_UCR_FILE\")"
114+
# shellcheck disable=SC1090
115+
source "${NC_UCR_FILE}"
115116
if [ "$NC_IS_UPGRADE" -eq 0 ] ; then
116117
$OCC config:system:set updatechecker --type=boolean --value="false" # this is handled via UCS AppCenter
117118
$OCC config:system:set upgrade.disable-web --type=boolean --value="true"

0 commit comments

Comments
 (0)