From 2bf2b0798ebab021054de45d259285e4a0317e20 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 16 Jul 2025 14:47:32 +0200 Subject: [PATCH] Solved bug --- backup-docker-to-local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup-docker-to-local.py b/backup-docker-to-local.py index 98609b4..8b0ded5 100644 --- a/backup-docker-to-local.py +++ b/backup-docker-to-local.py @@ -222,7 +222,7 @@ def change_containers_status(containers, status): print(f"No containers to {status}.") def is_image_whitelisted(container, images): - info = (container)[0] + info = get_image_info(container)[0] return any(img in info for img in images) def is_container_stop_required(containers):