Update Dockerfile #5

Merged
glenux merged 4 commits from develop into master 2024-01-09 11:13:37 +00:00
Showing only changes of commit 9996951e64 - Show all commits

View file

@ -6,8 +6,12 @@ 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"