mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +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:
@ -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
|
||||
|
Reference in New Issue
Block a user