From 386baff65f78fd64e9ccfa50b0eb5c6c6bc4f3b8 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Tue, 25 Nov 2025 23:29:31 +0100 Subject: [PATCH] fix(staging): correct command names for scheduler and queue-worker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - scheduler: scheduler:run → schedule:run (correct console command) - queue-worker: console.php queue:work → worker.php (standalone script) --- docker-compose.staging.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.staging.yml b/docker-compose.staging.yml index ba650319..9b349ffa 100644 --- a/docker-compose.staging.yml +++ b/docker-compose.staging.yml @@ -414,7 +414,7 @@ services: - app-logs:/var/www/html/storage/logs - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro - command: php console.php queue:work --queue=default --timeout=${QUEUE_WORKER_TIMEOUT:-60} + command: php worker.php healthcheck: test: ["CMD-SHELL", "php -r 'exit(0);' && test -f /var/www/html/console.php || exit 1"] interval: 60s @@ -464,7 +464,7 @@ services: - app-logs:/var/www/html/storage/logs - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro - command: php console.php scheduler:run + command: php console.php schedule:run healthcheck: test: ["CMD-SHELL", "php -r 'exit(0);' && test -f /var/www/html/console.php || exit 1"] interval: 60s