Vendor in latest containers-storage to add devmapper support

containers/storage and storage.conf now support flags to allow users
to setup containers/storage to run on devicemapper.

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2018-05-18 12:04:00 -04:00
parent 7e9a664764
commit 597b6bd204
11 changed files with 154 additions and 20 deletions

View File

@@ -304,8 +304,9 @@ func (r *containerStore) Create(id string, names []string, image, layer, metadat
r.byname[name] = container
}
err = r.Save()
container = copyContainer(container)
}
return copyContainer(container), err
return container, err
}
func (r *containerStore) Metadata(id string) (string, error) {