All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 3m39s
7 lines
144 B
Bash
7 lines
144 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
php artisan migrate --force
|
|
php artisan db:seed --force
|
|
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
|