From 7969d08e4f52c0487ab529cdc9fde1852ab760cf Mon Sep 17 00:00:00 2001 From: szaimen Date: Tue, 7 Dec 2021 17:14:56 +0100 Subject: [PATCH] increase the upload limit size to 10G Signed-off-by: szaimen --- Containers/nextcloud/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/nextcloud/Dockerfile b/Containers/nextcloud/Dockerfile index 4f932a77..1b6c95f0 100644 --- a/Containers/nextcloud/Dockerfile +++ b/Containers/nextcloud/Dockerfile @@ -14,7 +14,7 @@ RUN set -ex; \ # install the PHP extensions we need # see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html ENV PHP_MEMORY_LIMIT 512M -ENV PHP_UPLOAD_LIMIT 512M +ENV PHP_UPLOAD_LIMIT 10G RUN set -ex; \ \ savedAptMark="$(apt-mark showmanual)"; \