зеркало из https://github.com/microsoft/docker.git
fix run after rmi
This commit is contained in:
Родитель
eed64e6777
Коммит
0a5d86d7be
2
graph.go
2
graph.go
|
@ -62,7 +62,7 @@ func (graph *Graph) restore() error {
|
|||
// FIXME: Implement error subclass instead of looking at the error text
|
||||
// Note: This is the way golang implements os.IsNotExists on Plan9
|
||||
func (graph *Graph) IsNotExist(err error) bool {
|
||||
return err != nil && strings.Contains(err.Error(), "does not exist")
|
||||
return err != nil && (strings.Contains(err.Error(), "does not exist") || strings.Contains(err.Error(), "No such"))
|
||||
}
|
||||
|
||||
// Exists returns true if an image is registered at the given id.
|
||||
|
|
Загрузка…
Ссылка в новой задаче