From 6ba508c7bc5e741b9589d8d2073016ea58b45150 Mon Sep 17 00:00:00 2001 From: a2nr Date: Mon, 10 Aug 2026 11:25:44 +0700 Subject: [PATCH] fix(verify): skip stale check when image tag unknown (avoid bogus podman images call) --- elemes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elemes.sh b/elemes.sh index 3513436..1d91726 100755 --- a/elemes.sh +++ b/elemes.sh @@ -277,7 +277,7 @@ verify) else while IFS='|' read -r cname cimage cid cstatus clabels; do svc=$(printf '%s' "$clabels" | sed -n 's/.*com.docker.compose.service[:=]\([^ ,}]*\).*/\1/p') - tag="${SERVICE_IMAGE_TAG[$svc]:-unknown}" + tag="${SERVICE_IMAGE_TAG[$svc]}" stale="" if [ -n "$tag" ]; then tag_iid=$(podman images "$tag" --noheading --format '{{.ID}}' 2>/dev/null | head -1)