mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2026-01-07 23:17:25 +01:00
17 lines
668 B
Bash
Executable File
17 lines
668 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Early Entry"
|
|
|
|
cleanup ()
|
|
{
|
|
kill -s SIGTERM $!
|
|
exit 0
|
|
}
|
|
|
|
trap cleanup SIGINT SIGTERM
|
|
|
|
while :
|
|
do
|
|
sleep 60 ; cd /var/www/app/ && php artisan schedule:run;
|
|
done
|