7 lines
116 B
Bash
7 lines
116 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -e
|
||
|
|
|
||
|
|
php artisan migrate --force
|
||
|
|
|
||
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
|