mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
12 lines
201 B
Bash
12 lines
201 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Run migrations
|
|
php artisan mysql:createdb
|
|
php artisan migrate
|
|
php artisan sandbox:migrate
|
|
php artisan fleetbase:seed
|
|
|
|
# Call the original entrypoint
|
|
exec docker-php-entrypoint "$@"
|