Browse Source

fix docker rmi stucking

Signed-off-by: Haichao Yang <yang.haichao@zte.com.cn>
Haichao Yang 5 years ago
parent
commit
d3f64846a2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      daemon/images/image_delete.go

+ 1 - 1
daemon/images/image_delete.go

@@ -369,7 +369,7 @@ func (i *ImageService) checkImageDeleteConflict(imgID image.ID, mask conflictTyp
 	if mask&conflictRunningContainer != 0 {
 		// Check if any running container is using the image.
 		running := func(c *container.Container) bool {
-			return c.IsRunning() && c.ImageID == imgID
+			return c.ImageID == imgID && c.IsRunning()
 		}
 		if container := i.containers.First(running); container != nil {
 			return &imageDeleteConflict{