1podman-volume-import(1) General Commands Manual podman-volume-import(1)
2
3
4
6 podman-volume-import - Import tarball contents into an existing podman
7 volume
8
9
11 podman volume import volume [source]
12
13
15 podman volume import imports the contents of a tarball into the podman
16 volume's mount point. The contents of the volume is merged with the
17 content of the tarball with the latter taking precedence. podman vol‐
18 ume import can consume piped input when using - as source path.
19
20
21 The given volume must already exist and is not created by podman volume
22 import.
23
24
25 Note: Following command is not supported by podman-remote.
26
27
28 --help
29 Print usage statement
30
31
33 $ gunzip -c hello.tar.gz | podman volume import myvol -
34
35
36 $ podman volume import myvol test.tar
37
38
39 $ podman volume export myvol | podman volume import oldmyvol -
40
41
42
44 podman(1), podman-volume(1), podman-volume-export(1)
45
46
47
48 podman-volume-import(1)