Compare commits

...

5 commits

Author SHA1 Message Date
Glenn Y. Rolland 9e87e2d8c5 Merge pull request 'Update Dockerfile' (#5) from develop into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #5
2024-01-09 11:13:35 +00:00
Glenn Y. Rolland 9996951e64 fix: ensure htaccess is up to date
Some checks reported errors
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build was killed
2024-01-09 12:04:12 +01:00
Glenn Y. Rolland cccbc35d25 Bump version to 28.0.1
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
2024-01-08 18:34:18 +01:00
Glenn Y. Rolland 9b6c110a74 Add support for bz2
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
2024-01-08 18:21:50 +01:00
Glenn Y. Rolland e5dfb0268a Update Dockerfile
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
2023-12-18 18:51:56 +00:00
2 changed files with 12 additions and 1 deletions

View file

@ -15,7 +15,8 @@
# 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:27.1.4-apache
FROM nextcloud:28.0.1-apache
# This is a stupid comment for a demo (remove later)
@ -52,6 +53,12 @@ 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,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"