Compare commits

..

No commits in common. "a40f479a8dec9726d501be39d764e0150c613168" and "3cb9c8fc42c7f1a158810f782e6b1bf27988ac8d" have entirely different histories.

7 changed files with 20 additions and 62 deletions

View file

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

View file

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

View file

@ -18,13 +18,3 @@
* push image to local registry * push image to local registry
4. 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"

7
app.json Normal file
View file

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

View file

@ -1,15 +1,2 @@
location = /robots.txt { rewrite ^/\.well-known/carddav https://$server_name/remote.php/dav/ permanent;
allow all; rewrite ^/\.well-known/caldav https://$server_name/remote.php/dav/ permanent;
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,25 +3,14 @@
set -u set -u
set -e set -e
WORKDIR=/var/www/html cd /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))" echo "GYR:POSTDEPLOY:START ($(pwd))"
find . -maxdepth 1 find . -maxdepth 1
echo "GYR:POSTDEPLOY:UPGRADE" php -d memory_limit=-1 occ maintenance:mode --on
php -d memory_limit=-1 occ 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:convert-filecache-bigint
php -d memory_limit=-1 occ db:add-missing-indices php -d memory_limit=-1 occ db:add-missing-indices
echo "GYR:POSTDEPLOY:HTACCESS"
php -d memory_limit=-1 occ maintenance:update: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
php -d memory_limit=-1 occ maintenance:mode --off || true php -d memory_limit=-1 occ maintenance:mode --off || true
echo "GYR:POSTDEPLOY:END" echo "GYR:POSTDEPLOY:END"

View file

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