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

@ -22,14 +22,19 @@ Print usage statement
## EXAMPLES
```
$ gunzip -c hello.tar.gz | podman volume import myvol -
```
Import named volume content from the specified file.
```
$ podman volume import myvol test.tar
```
Import named volume content from stdin.
```
$ podman volume export myvol | podman volume import oldmyvol -
$ gunzip -c hello.tar.gz | podman volume import myvol -
```
Export the content from named volume and pipe it into the named volume via stdin.
```
$ podman volume export oldmyvol | podman volume import myvol -
```
## SEE ALSO