зеркало из https://github.com/microsoft/docker.git
record the error of removing volumes
Signed-off-by: Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
This commit is contained in:
Родитель
7ce97dbe30
Коммит
49da029030
|
@ -55,7 +55,10 @@ func (daemon *Daemon) ContainerRm(name string, config *ContainerRmConfig) error
|
||||||
return fmt.Errorf("Cannot destroy container %s: %v", name, err)
|
return fmt.Errorf("Cannot destroy container %s: %v", name, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
container.removeMountPoints(config.RemoveVolume)
|
if err := container.removeMountPoints(config.RemoveVolume); err != nil {
|
||||||
|
logrus.Errorf("%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче