mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-20 10:56:08 +02:00
13 lines
279 B
Bash
Executable file
13 lines
279 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
|
|
|
|
if [ -n "$TZ"]; then
|
|
cp /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
fi
|
|
|
|
exec "$@"
|