Docker-PHP/laravel/laravel-scheduler.runit

12 lines
255 B
Text
Raw Normal View History

2023-03-01 17:32:51 +00:00
#!/bin/bash
cd /app
echo "[SCHEDULER] Waiting until Migration Complete."
until [ -f /var/lock/laravel_migration_complete ]
do
sleep 1
done
echo "[SCHEDULER] Migrations complete, starting scheduler"
while true; do
artisan schedule:run
sleep 59;
done