mirror this repo: https://github.com/hellodk34/lsky-pro-docker
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
282 B
12 lines
282 B
#!/bin/bash
|
|
set -eu
|
|
|
|
if [ ! -e '/var/www/html/public/index.php' ]; then
|
|
cp -a /var/www/lsky/* /var/www/html/
|
|
cp -a /var/www/lsky/.env.example /var/www/html
|
|
fi
|
|
chown -R www-data /var/www/html
|
|
chgrp -R www-data /var/www/html
|
|
chmod -R 755 /var/www/html/
|
|
|
|
exec "$@"
|
|
|