We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0717b commit 71e7b8cCopy full SHA for 71e7b8c
2 files changed
common/etc/s6-overlay/s6-rc.d/queue/run
@@ -2,7 +2,7 @@
2
3
if [ "$QUEUE_ENABLED" = "true" ]; then
4
echo "Queue is enabled"
5
- artisan queue:work \
+ php "$APP_BASE_DIR/artisan" queue:work \
6
--max-jobs $QUEUE_MAX_JOBS \
7
--sleep $QUEUE_SLEEP \
8
--rest $QUEUE_REST \
common/etc/s6-overlay/s6-rc.d/schedule/run
if [ "$SCHEDULE_ENABLED" = "true" ]; then
echo "Schedule is enabled"
- artisan schedule:work --whisper
+ php "$APP_BASE_DIR/artisan" schedule:work --whisper
else
echo "Schedule is disabled"
s6-svc -Od .
0 commit comments