diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-09-20 09:33:07 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2021-09-22 16:29:07 -0400 |
commit | 45f8b01f678fd289547aa02d342ce208f08f0558 (patch) | |
tree | 2c5e92e38cde61ee9d8a16ad005ad16a15816b3f /cmd/podman/images/inspect.go | |
parent | 863ea75c4f29add42bfff517974c8b4f36925334 (diff) | |
download | podman-45f8b01f678fd289547aa02d342ce208f08f0558.tar.gz podman-45f8b01f678fd289547aa02d342ce208f08f0558.tar.bz2 podman-45f8b01f678fd289547aa02d342ce208f08f0558.zip |
Add podman image/container inspect man pages
[NO TESTS NEEDED] since this is really a docs change.
Concludes: https://github.com/containers/podman/pull/11620
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/images/inspect.go')
-rw-r--r-- | cmd/podman/images/inspect.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/podman/images/inspect.go b/cmd/podman/images/inspect.go index 35c173a60..dd8cf8056 100644 --- a/cmd/podman/images/inspect.go +++ b/cmd/podman/images/inspect.go @@ -17,9 +17,9 @@ var ( Long: `Displays the low-level information of an image identified by name or ID.`, RunE: inspectExec, ValidArgsFunction: common.AutocompleteImages, - Example: `podman inspect alpine - podman inspect --format "imageId: {{.Id}} size: {{.Size}}" alpine - podman inspect --format "image: {{.ImageName}} driver: {{.Driver}}" myctr`, + Example: `podman image inspect alpine + podman image inspect --format "imageId: {{.Id}} size: {{.Size}}" alpine + podman image inspect --format "image: {{.ImageName}} driver: {{.Driver}}" myctr`, } inspectOpts *entities.InspectOptions ) |