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 will be merged with
17 the content of the tarball with the latter taking precedence. podman
18 volume import can consume piped input when using - as source path.
19
20
21 The given volume must already exist and will not be created by podman
22 volume 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
37 $ podman volume import myvol test.tar
38
39
40
41 $ podman volume export myvol | podman volume import oldmyvol -
42
43
44
46 podman(1), podman-volume(1), podman-volume-export(1)
47
48
49
50 podman-volume-import(1)