mirror of
https://github.com/containers/podman.git
synced 2025-05-17 15:18:43 +08:00
Add information about --latest support on man pages
On Mac and Windows systems the --latest option is not supported this PR mentions this fact in the examples section of the man page. Also added documentation and consistency to the man pages examples sections. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
@ -46,9 +46,18 @@ Display secret data
|
||||
|
||||
## EXAMPLES
|
||||
|
||||
Inspect the secret mysecret.
|
||||
```
|
||||
$ podman secret inspect mysecret
|
||||
```
|
||||
|
||||
Inspect the secret mysecret and display the Name and Scope field.
|
||||
```
|
||||
$ podman secret inspect --format "{{.Name} {{.Scope}}" mysecret
|
||||
```
|
||||
|
||||
Inspect the secret mysecret and display the Name and SecretData fields. Note this will display the secret data to the screen.
|
||||
```
|
||||
$ podman secret inspect --showsecret --format "{{.Name} {{.SecretData}}" mysecret
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user