diff options
author | baude <bbaude@redhat.com> | 2018-03-21 09:55:57 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-21 19:14:50 +0000 |
commit | d0835493d51038dda2bc63530f4fb70ced9f98cf (patch) | |
tree | e8199183a90f2d09dd4eb1f7539031811503bddc /cmd/podman/inspect.go | |
parent | 3428de0672afcd94ce65d7c29fd23e44e7e2b465 (diff) | |
download | podman-d0835493d51038dda2bc63530f4fb70ced9f98cf.tar.gz podman-d0835493d51038dda2bc63530f4fb70ced9f98cf.tar.bz2 podman-d0835493d51038dda2bc63530f4fb70ced9f98cf.zip |
Migrate podman inspect and tag to image library
Signed-off-by: baude <bbaude@redhat.com>
Closes: #525
Approved by: baude
Diffstat (limited to 'cmd/podman/inspect.go')
-rw-r--r-- | cmd/podman/inspect.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/inspect.go b/cmd/podman/inspect.go index b691b7a12..4c4154d88 100644 --- a/cmd/podman/inspect.go +++ b/cmd/podman/inspect.go @@ -133,7 +133,7 @@ func iterateInput(c *cli.Context, args []string, runtime *libpod.Runtime, inspec inspectError = errors.Wrapf(err, "error getting image %q", input) break } - data, err = libpod.GetImageData(image) + data, err = image.Inspect() if err != nil { inspectError = errors.Wrapf(err, "error parsing image data %q", image.ID()) break @@ -146,7 +146,7 @@ func iterateInput(c *cli.Context, args []string, runtime *libpod.Runtime, inspec inspectError = errors.Wrapf(err, "error getting image %q", input) break } - data, err = libpod.GetImageData(image) + data, err = image.Inspect() if err != nil { inspectError = errors.Wrapf(err, "error parsing image data %q", image.ID()) break |