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:
Daniel J Walsh
2024-01-10 06:47:00 -05:00
parent d084146864
commit d3a49fdedb
61 changed files with 377 additions and 142 deletions

View File

@ -49,11 +49,19 @@ Print usage statement
## EXAMPLES
Prune all unused volumes.
```
$ podman volume prune
```
Prune all volumes. Note: this command will also remove all containers that are using a volume.
```
$ podman volume prune --force
```
Prune all volumes that contain the specified label.
```
$ podman volume prune --filter label=mylabel=mylabelvalue
```