From ee4205d61d47a5b579c20473331fa6bac1a6f1e2 Mon Sep 17 00:00:00 2001 From: Lucas Berger Date: Wed, 4 Feb 2026 10:10:44 -0500 Subject: [PATCH] fix(09-04): show all containers in batch select (including stopped) Changed Fetch Containers For Batch Mode and Fetch Containers For Toggle Update to use all=true instead of all=false, so stopped containers appear in the batch select list for batch start operations. Co-Authored-By: Claude Opus 4.5 --- n8n-workflow.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/n8n-workflow.json b/n8n-workflow.json index c45e75a..33e295b 100644 --- a/n8n-workflow.json +++ b/n8n-workflow.json @@ -5387,7 +5387,7 @@ { "parameters": { "method": "GET", - "url": "=http://docker-socket-proxy:2375/containers/json?all=false", + "url": "=http://docker-socket-proxy:2375/containers/json?all=true", "options": {} }, "id": "http-fetch-containers-batch-mode", @@ -5524,7 +5524,7 @@ { "parameters": { "method": "GET", - "url": "=http://docker-socket-proxy:2375/containers/json?all=false", + "url": "=http://docker-socket-proxy:2375/containers/json?all=true", "options": {} }, "id": "http-fetch-containers-toggle",