0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-25 23:46:09 +01:00
nextcloud-docker/docker-entrypoint.sh

9 lines
181 B
Bash
Executable file

#!/bin/ash
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 "$@"