Make Nextcloud Scaleable (#127)

* Add Session Save Path

* Update Dockerfile

* Make Nextcloud scaleable

* Use sed

* remove php.ini

* Update run.sh

* Update Dockerfile

* Update Dockerfile
This commit is contained in:
Berndinox
2017-02-22 20:03:48 +01:00
committed by Wonderfall
parent 1f7b934d36
commit da78ba1175
3 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,11 @@ ln -sf /apps2 /nextcloud &>/dev/null
mv nextcloud fix && mv fix nextcloud # fix strange bug
# Create folder for php sessions if not exists
if [ ! -d /data/session ]; then
mkdir -p /data/session;
fi
echo "Updating permissions..."
for dir in /nextcloud /data /config /apps2 /etc/nginx /etc/php7.1 /var/log /var/lib/nginx /tmp /etc/s6.d; do
if $(find $dir ! -user $UID -o ! -group $GID|egrep '.' -q); then