1podman-volume-import(1)() podman-volume-import(1)()
2
3
4
6 podman-volume-import - Import tarball contents into a podman volume
7
8
10 podman volume import volume [source]
11
12
14 podman volume import imports the contents of a tarball into the podman
15 volume's mount point. podman volume import can consume piped input
16 when using - as source path.
17
18
19 Note: Following command is not supported by podman-remote.
20
21
22 podman volume import VOLUME [SOURCE]
23
24
25 --help
26 Print usage statement
27
28
30 $ gunzip -c hellow.tar.gz | podman volume import myvol -
31
32
33
34 $ podman volume import myvol test.tar
35
36
37
38 $ podman volume export myvol | podman volume import oldmyvol -
39
40
41
43 podman-volume(1), podman-volume-export(1)
44
45
46
47 podman-volume-import(1)()