mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-05 22:04:58 +01:00
9 lines
182 B
Bash
Executable file
9 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 "$@"
|