From 8a695bec9536c963613a941559aaee602ab7144a Mon Sep 17 00:00:00 2001 From: Simon Rieger Date: Mon, 21 Jul 2025 09:38:33 +0200 Subject: [PATCH] show all local digest at start on this programm --- go/main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go/main.go b/go/main.go index 338c1a1..8481f29 100644 --- a/go/main.go +++ b/go/main.go @@ -102,6 +102,10 @@ func checkImageUpdates() { } } + for tag, digest := range imageTagToDigest { + log.Printf("imageTagToDigest: %s -> %s\n", tag, digest) + } + results := make([]ImageStatus, 0) for _, ctr := range containers { tag := ctr.Image