Przeglądaj źródła

Merge pull request #45562 from laurazard/fix-pull-platform-backport

[24.0 backport] fix: `docker pull` with platform checks wrong image tag
Sebastiaan van Stijn 2 lat temu
rodzic
commit
821e4ec4c7
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      daemon/images/image_pull.go

+ 1 - 1
daemon/images/image_pull.go

@@ -63,7 +63,7 @@ func (i *ImageService) PullImage(ctx context.Context, image, tag string, platfor
 		// we allow the image to have a non-matching architecture. The code
 		// below checks for this situation, and returns a warning to the client,
 		// as well as logging it to the daemon logs.
-		img, err := i.GetImage(ctx, image, imagetypes.GetImageOpts{Platform: platform})
+		img, err := i.GetImage(ctx, ref.String(), imagetypes.GetImageOpts{Platform: platform})
 
 		// Note that this is a special case where GetImage returns both an image
 		// and an error: https://github.com/docker/docker/blob/v20.10.7/daemon/images/image.go#L175-L183