Compare commits

..

14 commits

Author SHA1 Message Date
a40f479a8d Merge pull request 'develop' (#10) from develop into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #10
2024-07-08 19:53:29 +00:00
6253e3138e ci: buildkit is required for this project
Some checks reported errors
continuous-integration/drone/pr Build was killed
continuous-integration/drone/push Build is passing
2024-07-08 21:47:41 +02:00
2bd0b79571 chore: bump to 29.0.3
Some checks failed
continuous-integration/drone/push Build is failing
2024-07-08 21:14:02 +02:00
b17f8bd032 feat: use internal postdeploy hook instead of dokku's
Some checks failed
continuous-integration/drone/push Build is failing
2024-07-08 21:12:45 +02:00
e509d0eb28 fix: workdir may not be available at startup 2024-05-05 19:26:20 +02:00
56e1f73971 fix: workdir may not be available at startup 2024-05-05 19:22:06 +02:00
0f51b7ffc1 fix: workdir may not be available at startup 2024-05-05 19:16:51 +02:00
32a3c9024e fix: workdir may not be available at startup 2024-05-05 19:15:55 +02:00
9eb628314e fix: workdir may not be available at startup 2024-05-05 19:14:14 +02:00
978904a920 Merge branch 'develop' of code.apps.glenux.net:glenux-opencontainers/service-nextcloud into develop 2024-05-05 19:07:08 +02:00
2b745cf92a doc: add config lines for dokku 2024-05-05 19:06:44 +02:00
e1069a8e38 fix(dockerfile): improve readability 2024-05-05 19:06:26 +02:00
9dafd41213 fix: add logging to postdeploy 2024-05-05 19:06:10 +02:00
8ed5bd4eb5 fix config for nginx 2024-05-05 19:05:33 +02:00
7 changed files with 62 additions and 20 deletions

View file

@ -18,6 +18,7 @@ steps:
# path: /stupid
environment:
DOCKER_REPO: glenux/service-nextcloud
DOCKER_BUILDKIT: 1
settings:
username:
from_secret: DOCKERHUB_USERNAME
@ -33,6 +34,8 @@ steps:
# volumes:
# - name: cache
# path: /stupid
environment:
DOCKER_BUILDKIT: 1
settings:
username:
from_secret: DOCKERHUB_USERNAME
@ -50,6 +53,8 @@ steps:
- name: publish:latest
image: plugins/docker
environment:
DOCKER_BUILDKIT: 1
settings:
username:
from_secret: DOCKERHUB_USERNAME

View file

@ -17,12 +17,13 @@
# FROM nextcloud:27.1.3-apache
# FROM nextcloud:27.1.4-apache
# FROM nextcloud:28.0.1-apache
FROM nextcloud:29.0.0-apache
FROM nextcloud:29.0.3-apache
# This is a stupid comment for a demo (remove later)
RUN apt-get update \
&& apt-get install -y clamdscan nano ghostscript \
&& apt-get install -y --no-install-recommends \
clamdscan nano ghostscript \
&& apt-get clean
#
@ -51,20 +52,25 @@ RUN apt-get update \
##
## GMP Support (for bookmark extension)
##
RUN apt-get update && apt-get install -y libgmp3-dev \
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
libgmp3-dev \
&& docker-php-ext-install gmp
##
## BZ2 Support (for nextcloud)
##
RUN apt-get update && apt-get install -y libbz2-dev \
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
libbz2-dev \
&& docker-php-ext-install bz2
##
## SVG and LibreSign support
##
RUN apt-get update && apt-get install -y \
libmagickcore-6.q16-6-extra \
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
libmagickcore-6.q16-6-extra \
&& rm -rf /var/lib/apt/lists/*
RUN sed -i'' 's|.*<policy domain="coder".*"PDF".*|<policy domain="coder" rights="read \| write" pattern="PDF" />|g' \
@ -88,14 +94,14 @@ RUN echo '[opcache]' > /usr/local/etc/php/conf.d/opcache.ini \
RUN echo '*/5 * * * * php -d memory_limit=1024M -f /var/www/html/cron.php' \
> /var/spool/cron/crontabs/www-data
RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get install -y --no-install-recommends \
supervisor \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /var/log/supervisord /var/run/supervisord
COPY supervisord.conf /etc/supervisord.conf
COPY app.json /app/app.json
COPY postdeploy.sh /app/postdeploy.sh
COPY --chmod=755 ./postdeploy.sh /app/postdeploy.sh
COPY --chmod=755 ./postdeploy_hook.sh /docker-entrypoint-hooks.d/post-installation/postdeploy_hook.sh
ENV NEXTCLOUD_UPDATE=1

View file

@ -18,3 +18,13 @@
* push image to local registry
4.
ssh dokku@buddha-apps.boldcode.io app-json:set cloud appjson-path /app/app.json # glenux/service-nextcloud:latest
Run after install
config:app:set --value '30' files_lock lock_timeout
Add this in crontab
dokku enter cloud web su -l -s /bin/bash - www-data -c "cd html && php -dmemory_limit=-1 ./occ app:update --all"

View file

@ -1,7 +0,0 @@
{
"scripts": {
"dokku": {
"postdeploy": "su -l -s /bin/sh www-data -c /app/postdeploy.sh"
}
}
}

View file

@ -1,2 +1,15 @@
rewrite ^/\.well-known/carddav https://$server_name/remote.php/dav/ permanent;
rewrite ^/\.well-known/caldav https://$server_name/remote.php/dav/ permanent;
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location = /.well-known/carddav {
return 301 $scheme://$host/remote.php/dav;
}
location = /.well-known/caldav {
return 301 $scheme://$host/remote.php/dav;
}
location /.well-known/acme-challenge { }

View file

@ -3,14 +3,25 @@
set -u
set -e
cd /var/www/html
WORKDIR=/var/www/html
counter=0
while [ ! -d "$WORKDIR" ] && [ "$counter" -lt 120 ]; do
echo "GYR:POSTDEPLOY:WAITING"
counter=$((counter+1))
sleep 1
done
cd "$WORKDIR" || exit 1
echo "GYR:POSTDEPLOY:START ($(pwd))"
find . -maxdepth 1
php -d memory_limit=-1 occ maintenance:mode --on
echo "GYR:POSTDEPLOY:UPGRADE"
php -d memory_limit=-1 occ upgrade
echo "GYR:POSTDEPLOY:DB"
php -d memory_limit=-1 occ db:convert-filecache-bigint
php -d memory_limit=-1 occ db:add-missing-indices
echo "GYR:POSTDEPLOY:HTACCESS"
php -d memory_limit=-1 occ maintenance:update:htaccess
echo "GYR:POSTDEPLOY:MAINTENANCE:OFF"
php -d memory_limit=-1 occ maintenance:mode --off
php -d memory_limit=-1 occ maintenance:mode --off || true
echo "GYR:POSTDEPLOY:END"

4
postdeploy_hook.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
su -l -s /bin/sh www-data -c /app/postdeploy.sh