mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fix docker rmi stucking
Signed-off-by: Haichao Yang <yang.haichao@zte.com.cn>
This commit is contained in:
parent
0c46a20f94
commit
d3f64846a2
1 changed files with 1 additions and 1 deletions
|
@ -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{
|
||||
|
|
Loading…
Add table
Reference in a new issue