backup
backup copied to clipboard
Usage with Docker container
Hi,
when using the backup app along with the Docker image provided by you guys, one runs into some configuration issues:
- The PHP memory limit is too small. The chunks are of size up to 4 GiB, 512 MiB don't suffice to extract them. My current workarround is to use an additional Dockerfile for the Nectloud container which contains this line:
RUN echo $'memory_limit=8G\n\ upload_max_filesize=${PHP_UPLOAD_LIMIT}\n\ post_max_size=${PHP_UPLOAD_LIMIT}' > /usr/local/etc/php/conf.d/nextcloud.ini
- The mysqli extension is not installed within the container/the build flag is missing, used during restoring the sqldump, The workaround that I'musing is to add another line to the above-mentioned Dockerfile with the content: `RUN docker-php-ext-install mysqli