1
0
mirror of https://github.com/nextcloud/docker.git synced 2024-06-23 16:06:38 +02:00
docker-nextcloud/9.0/apache/docker-entrypoint.sh
2017-01-21 15:22:59 +00:00

10 lines
182 B
Bash
Executable File

#!/bin/bash
set -e
if [ ! -e '/var/www/html/version.php' ]; then
tar cf - --one-file-system -C /usr/src/nextcloud . | tar xf -
chown -R www-data /var/www/html
fi
exec "$@"