diff --git a/docs/source/markdown/podman-inspect.1.md.in b/docs/source/markdown/podman-inspect.1.md.in index 2a6333d5e0..bc3dbcdb1a 100644 --- a/docs/source/markdown/podman-inspect.1.md.in +++ b/docs/source/markdown/podman-inspect.1.md.in @@ -40,7 +40,7 @@ Return JSON for the specified type. Type can be 'container', 'image', 'volume', ## EXAMPLE -Inspect the fedora image +Inspect the fedora image: ``` # podman inspect fedora [ @@ -122,43 +122,43 @@ Inspect the fedora image ] ``` -Inspect the specified image for Image Name. +Inspect the specified image with the `ImageName` format specifier: ``` # podman inspect a04 --format "{{.ImageName}}" fedora ``` -Inspect the specified image for GraphDriver Name. +Inspect the specified image for `GraphDriver` format specifier: ``` # podman inspect a04 --format "{{.GraphDriver.Name}}" overlay ``` -Inspect the specified image for its Size field. +Inspect the specified image for its `Size` format specifier: ``` # podman image inspect --format "size: {{.Size}}" alpine size: 4405240 ``` -Inspect the latest container created for its EffectiveCaps field. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines) +Inspect the latest container created for `EffectiveCaps` format specifier. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines): ``` podman container inspect --latest --format {{.EffectiveCaps}} [CAP_CHOWN CAP_DAC_OVERRIDE CAP_FSETID CAP_FOWNER CAP_SETGID CAP_SETUID CAP_SETFCAP CAP_SETPCAP CAP_NET_BIND_SERVICE CAP_KILL] ``` -Inspect the specified pod for the Name field. +Inspect the specified pod for the `Name` format specifier: ``` # podman inspect myPod --type pod --format "{{.Name}}" myPod ``` -Inspect the specified volume for the Name field. +Inspect the specified volume for the `Name` format specifier: ``` # podman inspect myVolume --type volume --format "{{.Name}}" myVolume ``` -Inspect the specified network for the Name field. +Inspect the specified network for the `Name` format specifier: ``` # podman inspect nyNetwork --type network --format "{{.name}}" myNetwork