From a16188a11079d4bf4f70ba21230e2260bed29421 Mon Sep 17 00:00:00 2001 From: jaydee Date: Tue, 10 Feb 2026 21:44:52 +0100 Subject: [PATCH] build --- portainer/api.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/portainer/api.py b/portainer/api.py index 0dba81f..02d5053 100644 --- a/portainer/api.py +++ b/portainer/api.py @@ -926,7 +926,9 @@ class PortainerApi: updates = [] for service_id in service_ids: # print(self.all_data["containers"][self.args.endpoint_id]) - + if service_dict[service_id] in self.args.excluded: + print(f"App {service_dict[service_id]} excluded") + continue print("\033[?25l", end="") print(f"{service_dict[service_id]:<{longest}} ", end="", flush=True) path = f"/docker/{self.get_endpoint_id()}/containers/{service_id}/image_status?refresh=true"