Merge pull request #4046 from vvoland/dangling-images-none

formatter: Consider empty RepoTags and RepoDigests as dangling
This commit is contained in:
Sebastiaan van Stijn 2023-03-01 00:43:43 +01:00 коммит произвёл GitHub
Родитель b244ad61cc 89687d5b3f
Коммит 881c353576
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -27,6 +27,9 @@ type ImageContext struct {
}
func isDangling(image types.ImageSummary) bool {
if len(image.RepoTags) == 0 && len(image.RepoDigests) == 0 {
return true
}
return len(image.RepoTags) == 1 && image.RepoTags[0] == "<none>:<none>" && len(image.RepoDigests) == 1 && image.RepoDigests[0] == "<none>@<none>"
}