9 lines
125 B
Plaintext
9 lines
125 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
php artisan freescout:clear-cache
|
||
|
php artisan storage:link
|
||
|
php artisan migrate
|
||
|
|
||
|
exec docker-php-entrypoint
|