We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a58c627 commit 11c1122Copy full SHA for 11c1122
src/AllImagesQuery.cs
@@ -119,7 +119,7 @@ private async IAsyncEnumerable<Image> GetBaseImagesAsync(Config.Config.ImageConf
119
var imagesListResponse = imagesListResponses
120
.SingleOrDefault(e =>
121
e.RepoTags != null &&
122
- e.RepoTags.Any(repoTag => repoTag.Contains(ImageNameHelper.BuildImageName(imageConfig.ImageName, tag))));
+ e.RepoTags.Any(repoTag => repoTag == ImageNameHelper.BuildImageName(imageConfig.ImageName, tag)));
123
List<Container> containers;
124
if (imagesListResponse != null)
125
{
0 commit comments