From 1c27933602c85caff944745934355662143a0719 Mon Sep 17 00:00:00 2001 From: Loi Nguyen Date: Sat, 1 Aug 2026 01:39:31 +0700 Subject: [PATCH] docs: fix AIO webhook worker command Signed-off-by: Loi Nguyen --- admin_manual/webhook_listeners/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/webhook_listeners/index.rst b/admin_manual/webhook_listeners/index.rst index cc55c0dc25e..885ba4118b8 100644 --- a/admin_manual/webhook_listeners/index.rst +++ b/admin_manual/webhook_listeners/index.rst @@ -141,7 +141,7 @@ For Nextcloud-AIO you should use this command on the host server. .. code-block:: - set -e; while true; do sudo docker exec -it nextcloud-aio-nextcloud docker exec -it nextcloud-aio-nextcloud sudo -E -u www-data php occ background-job:worker -v -t 60 "OCA\WebhookListeners\BackgroundJobs\WebhookCall"; done + set -e; while true; do sudo docker exec -it nextcloud-aio-mastercontainer docker exec -it nextcloud-aio-nextcloud sudo -E -u www-data php occ background-job:worker -v -t 60 "OCA\WebhookListeners\BackgroundJobs\WebhookCall"; done You may want to adjust the number of workers and the timeout (in seconds) to your needs. The logs of the worker can be checked by attaching to the screen or tmux session.