Correct location of executable

This commit is contained in:
Alexandre
2023-03-05 19:01:36 +01:00
committed by GitHub
parent ddd5440e56
commit 8dc4da4610

View File

@@ -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"