From 8dc4da4610819c9a117cdfb1d9e123ada8ebc0b6 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 5 Mar 2023 19:01:36 +0100 Subject: [PATCH] Correct location of executable --- nextcloud/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nextcloud/Dockerfile b/nextcloud/Dockerfile index 6030b4abf..d999e94b4 100644 --- a/nextcloud/Dockerfile +++ b/nextcloud/Dockerfile @@ -40,7 +40,10 @@ RUN \ sed -i \ -e 's/upload_max_fileize=1024M/upload_max_fileize=10240M/g' \ -e 's/post_max_size=1024M/post_max_size=10240M/g' \ - /etc/php*/php.ini || true + /etc/php*/php.ini || true && \ + \ + # Change location of executable + sed -i "s|/config|/data/config|g" /usr/bin/occ # Global LSIO modifications ARG CONFIGLOCATION="/data/config"