update to version 19

This commit is contained in:
2021-03-07 17:00:15 -05:00
parent 4002719423
commit b0eecf73b2
4 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
# see jenkinsfile for version to build
ARG NC_VERSION=17 ARG NC_VERSION=17
FROM nextcloud:${NC_VERSION}-apache FROM nextcloud:${NC_VERSION}-apache

View File

@@ -2,7 +2,7 @@ pipeline {
environment { environment {
APP_NAME = 'xaibox' APP_NAME = 'xaibox'
WORKDIR = 'dockerfiles/services/nextcloud' WORKDIR = 'dockerfiles/services/nextcloud'
NC_VERSION = 18 NC_VERSION = 19
} }
agent { label 'docker' } agent { label 'docker' }

View File

@@ -2,6 +2,7 @@
set -e set -e
#set -x #set -x
# see jenkinsfile for version to build
NC_VERSION=${NC_VERSION:-18} NC_VERSION=${NC_VERSION:-18}
LOCAL_IMAGE=xaicorp/nextcloud LOCAL_IMAGE=xaicorp/nextcloud
TAG=${NC_VERSION}.0-${BUILD_NUMBER:-dev} TAG=${NC_VERSION}.0-${BUILD_NUMBER:-dev}

View File

@@ -34,6 +34,8 @@ function deploy() {
occ upgrade occ upgrade
occ app:update --all occ app:update --all
occ db:add-missing-indices
# occ db:convert-filecache-bigint
} }
wait_for_completed() { wait_for_completed() {