diff --git a/nextcloud/10.0/Dockerfile b/nextcloud/10.0/Dockerfile index 52644ab..c9e8e4a 100644 --- a/nextcloud/10.0/Dockerfile +++ b/nextcloud/10.0/Dockerfile @@ -9,6 +9,7 @@ ENV UID=991 GID=991 \ UPLOAD_MAX_SIZE=10G \ APC_SHM_SIZE=128M \ OPCACHE_MEM_SIZE=128 \ + REDIS_MAX_MEMORY=64mb \ CRON_PERIOD=15m \ TZ=Etc/UTC \ DB_TYPE=sqlite3 \ @@ -34,6 +35,7 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a samba-client \ su-exec \ tzdata \ + redis \ php7@commuedge \ php7-fpm@commuedge \ php7-intl@commuedge \ @@ -98,6 +100,7 @@ COPY nginx.conf /etc/nginx/nginx.conf COPY php-fpm.conf /etc/php7/php-fpm.conf COPY opcache.ini /etc/php7/conf.d/00_opcache.ini COPY apcu.ini /etc/php7/conf.d/apcu.ini +COPY redis.conf /etc/redis.conf COPY run.sh /usr/local/bin/run.sh COPY setup.sh /usr/local/bin/setup.sh COPY occ /usr/local/bin/occ @@ -105,7 +108,7 @@ COPY s6.d /etc/s6.d RUN chmod +x /usr/local/bin/* /etc/s6.d/*/* /etc/s6.d/.s6-svscan/* -VOLUME /data /config /apps2 +VOLUME /data /config /apps2 /var/lib/redis EXPOSE 8888 diff --git a/nextcloud/10.0/redis.conf b/nextcloud/10.0/redis.conf new file mode 100644 index 0000000..c26fc6b --- /dev/null +++ b/nextcloud/10.0/redis.conf @@ -0,0 +1,14 @@ +bind 127.0.0.1 +protected-mode yes +port 0 +unixsocket /tmp/redis.sock +unixsocketperm 700 +daemonize no +pidfile /tmp/redis.pid +logfile /tmp/redis.log +save 900 1 +save 300 10 +save 60 10000 +dbfilename dump.rdb +dir /var/lib/redis/ +maxmemory diff --git a/nextcloud/10.0/run.sh b/nextcloud/10.0/run.sh index 16b4785..2c2144f 100644 --- a/nextcloud/10.0/run.sh +++ b/nextcloud/10.0/run.sh @@ -3,13 +3,14 @@ sed -i -e "s//$UPLOAD_MAX_SIZE/g" /etc/nginx/nginx.conf /etc/php7/php-fpm.conf \ -e "s//$APC_SHM_SIZE/g" /etc/php7/conf.d/apcu.ini \ -e "s//$OPCACHE_MEM_SIZE/g" /etc/php7/conf.d/00_opcache.ini \ + -e "s//$REDIS_MAX_MEMORY/g" /etc/redis.conf \ -e "s//$CRON_PERIOD/g" /etc/s6.d/cron/run # Put the configuration and apps into volumes ln -sf /config/config.php /nextcloud/config/config.php &>/dev/null ln -sf /apps2 /nextcloud &>/dev/null -chown -R $UID:$GID /nextcloud /data /config /apps2 /etc/nginx /etc/php7 /var/log /var/lib/nginx /tmp /etc/s6.d +chown -R $UID:$GID /nextcloud /data /config /apps2 /etc/nginx /etc/php7 /var/log /var/lib/nginx /var/lib/redis /tmp /etc/s6.d if [ ! -f /config/config.php ]; then # New installation, run the setup diff --git a/nextcloud/10.0/s6.d/redis/run b/nextcloud/10.0/s6.d/redis/run new file mode 100644 index 0000000..4881331 --- /dev/null +++ b/nextcloud/10.0/s6.d/redis/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec redis-server /etc/redis.conf diff --git a/nextcloud/10.0/setup.sh b/nextcloud/10.0/setup.sh index dd011cd..ab7eb5b 100755 --- a/nextcloud/10.0/setup.sh +++ b/nextcloud/10.0/setup.sh @@ -29,6 +29,13 @@ cat > $CONFIGFILE < '\OC\Memcache\APCu', + 'memcache.locking' => '\OC\Memcache\Redis', + 'redis' => array( + 'host' => '/tmp/redis.sock', + 'port' => 0, + 'timeout' => 0.0, + ), + 'instanceid' => '$instanceid', ); ?> diff --git a/nextcloud/README.md b/nextcloud/README.md index 9ca8414..715a929 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -10,7 +10,7 @@ - Automatic installation using environment variables. - Package integrity and authenticity checked during building process. - Data and apps persistence. -- OPCache & APCu already configured. +- OPCache, APCu, Redis (file locking) installed and configured. - system cron task running. - MySQL, PostgreSQL (server not built-in) and sqlite3 support. - Redis, FTP, SMB, LDAP support. @@ -60,6 +60,7 @@ Don't forget to use a **strong password** for the admin account! - **/data** : Nextcloud data. - **/config** : config.php location. - **/apps2** : Nextcloud downloaded apps. +- **/var/lib/redis** : Redis dumpfile location. ### Database Basically, you can use a database instance running on the host or any other machine. An easier solution is to use an external database container. I suggest you to use MariaDB, which is a reliable database server. You can use the official `mariadb` image available on Docker Hub to create a database container, which must be linked to the Nextcloud container. PostgreSQL can also be used as well. diff --git a/nextcloud/daily/Dockerfile b/nextcloud/daily/Dockerfile index b3e41b9..3bdcdc2 100644 --- a/nextcloud/daily/Dockerfile +++ b/nextcloud/daily/Dockerfile @@ -7,6 +7,7 @@ ENV UID=991 GID=991 \ UPLOAD_MAX_SIZE=10G \ APC_SHM_SIZE=128M \ OPCACHE_MEM_SIZE=128 \ + REDIS_MAX_MEMORY=64mb \ CRON_PERIOD=15m \ TZ=Etc/UTC \ DB_TYPE=sqlite3 \ @@ -31,6 +32,7 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a samba-client \ su-exec \ tzdata \ + redis \ php7@commuedge \ php7-fpm@commuedge \ php7-intl@commuedge \ @@ -82,6 +84,7 @@ COPY nginx.conf /etc/nginx/nginx.conf COPY php-fpm.conf /etc/php7/php-fpm.conf COPY opcache.ini /etc/php7/conf.d/00_opcache.ini COPY apcu.ini /etc/php7/conf.d/apcu.ini +COPY redis.conf /etc/redis.conf COPY run.sh /usr/local/bin/run.sh COPY setup.sh /usr/local/bin/setup.sh COPY occ /usr/local/bin/occ @@ -89,7 +92,7 @@ COPY s6.d /etc/s6.d RUN chmod +x /usr/local/bin/* /etc/s6.d/*/* /etc/s6.d/.s6-svscan/* -VOLUME /data /config /apps2 +VOLUME /data /config /apps2 /var/lib/redis EXPOSE 8888 diff --git a/nextcloud/daily/redis.conf b/nextcloud/daily/redis.conf new file mode 100644 index 0000000..c26fc6b --- /dev/null +++ b/nextcloud/daily/redis.conf @@ -0,0 +1,14 @@ +bind 127.0.0.1 +protected-mode yes +port 0 +unixsocket /tmp/redis.sock +unixsocketperm 700 +daemonize no +pidfile /tmp/redis.pid +logfile /tmp/redis.log +save 900 1 +save 300 10 +save 60 10000 +dbfilename dump.rdb +dir /var/lib/redis/ +maxmemory diff --git a/nextcloud/daily/s6.d/redis/run b/nextcloud/daily/s6.d/redis/run new file mode 100644 index 0000000..4881331 --- /dev/null +++ b/nextcloud/daily/s6.d/redis/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec redis-server /etc/redis.conf diff --git a/nextcloud/daily/setup.sh b/nextcloud/daily/setup.sh index b6d9d92..ab7eb5b 100755 --- a/nextcloud/daily/setup.sh +++ b/nextcloud/daily/setup.sh @@ -29,6 +29,13 @@ cat > $CONFIGFILE < '\OC\Memcache\APCu', + 'memcache.locking' => '\OC\Memcache\Redis', + 'redis' => array( + 'host' => '/tmp/redis.sock', + 'port' => 0, + 'timeout' => 0.0, + ), + 'instanceid' => '$instanceid', ); ?> @@ -85,10 +92,7 @@ php7 < $CONFIG_TEMP && mv $CONFIG_TEMP $CONFIGFILE