Skip to content

Commit

Permalink
fix: 75152 add debug messages (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-raab committed Mar 14, 2022
1 parent a07a6e4 commit 944a866
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ open class PushImages
val availableimages = dockerClient.listImagesCmd().withShowAll(true).exec()
availableimages.forEach { img ->
images.get().forEach { imgName ->
if(img.repoTags.contains(imgName)) {
logger.quiet("check id {} for repotag {}", img.id, img.repoTags.get(0))

if(img.repoTags != null && img.repoTags.contains(imgName)) {
imageIDs.put(img.id.split(":").get(1).substring(0,12), imgName)
}
}
Expand Down

0 comments on commit 944a866

Please sign in to comment.