diff options
author | baude <bbaude@redhat.com> | 2018-11-25 16:26:39 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-11-26 09:19:39 -0600 |
commit | 9d883d2032b112d5c65040629313cfba0de6c479 (patch) | |
tree | 581d8a9bf1875426c4e3ebafe8f0bddd36559031 /cmd/podman/image.go | |
parent | e3ece3bb907145110408c54f70b839777b09da44 (diff) | |
download | podman-9d883d2032b112d5c65040629313cfba0de6c479.tar.gz podman-9d883d2032b112d5c65040629313cfba0de6c479.tar.bz2 podman-9d883d2032b112d5c65040629313cfba0de6c479.zip |
add podman container|image exists
Add an exists subcommand to podman container and podman image that allows
users to verify the existence of a container or image by ID or name. The return
code can be 0 (success), 1 (failed to find), or 125 (failed to work with runtime).
Issue #1845
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/image.go')
-rw-r--r-- | cmd/podman/image.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/image.go b/cmd/podman/image.go index e67f61799..418b442e3 100644 --- a/cmd/podman/image.go +++ b/cmd/podman/image.go @@ -9,6 +9,7 @@ var ( buildCommand, historyCommand, importCommand, + imageExistsCommand, inspectCommand, loadCommand, lsImagesCommand, |