mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-10-28 05:14:50 +03:00
12 lines
225 B
Bash
Executable File
12 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ "$1" == "composer" ]]; then
|
|
exec "$@"
|
|
else
|
|
wait-for-it db:3306 -t 45
|
|
php artisan migrate --database=mysql_docker_dev
|
|
chown -R www-data:www-data storage
|
|
exec apache2-foreground
|
|
fi |