SIGN IN SIGN UP
BookStackApp / BookStack UNCLAIMED

A platform to create documentation/wiki content built with PHP & Laravel

0 0 45 PHP
2019-06-23 13:16:45 +02:00
#!/bin/bash
set -e
2019-08-12 22:19:58 +02:00
env
if [[ -n "$1" ]]; then
2019-06-23 13:16:45 +02:00
exec "$@"
else
composer install
2019-06-23 13:16:45 +02:00
wait-for-it db:3306 -t 45
php artisan migrate --database=mysql --force
chown -R www-data storage public/uploads bootstrap/cache
2019-06-23 13:16:45 +02:00
exec apache2-foreground
fi