0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-27 13:35:44 +00:00
BookStackApp_BookStack/docker/dev/entrypoint.app.sh
2019-08-12 16:43:39 +02:00

12 lines
No EOL
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