Compare commits

..

No commits in common. "9e87e2d8c522d8218d7cbd190cda7632fde0ebb3" and "790c1bc56bf3b74ca080c0b59464b85544fb3cb5" have entirely different histories.

2 changed files with 1 additions and 12 deletions

View file

@ -15,8 +15,7 @@
# FROM nextcloud:27.0.2-apache
# FROM nextcloud:27.1.1-apache
# FROM nextcloud:27.1.3-apache
# FROM nextcloud:27.1.4-apache
FROM nextcloud:28.0.1-apache
FROM nextcloud:27.1.4-apache
# This is a stupid comment for a demo (remove later)
@ -53,12 +52,6 @@ RUN apt-get update \
RUN apt-get update && apt-get install -y libgmp3-dev \
&& docker-php-ext-install gmp
##
## BZ2 Support (for nextcloud)
##
RUN apt-get update && apt-get install -y libbz2-dev \
&& docker-php-ext-install bz2
##
## SVG and LibreSign support
##

View file

@ -6,12 +6,8 @@ set -e
cd /var/www/html
echo "GYR:POSTDEPLOY:START ($(pwd))"
find . -maxdepth 1
php -d memory_limit=-1 occ maintenance:mode --on
php -d memory_limit=-1 occ upgrade
php -d memory_limit=-1 occ db:convert-filecache-bigint
php -d memory_limit=-1 occ db:add-missing-indices
php -d memory_limit=-1 occ maintenance:update:htaccess
php -d memory_limit=-1 occ maintenance:mode --off
php -d memory_limit=-1 occ maintenance:mode --off || true
echo "GYR:POSTDEPLOY:END"