1podman-export(1) General Commands Manual podman-export(1)
2
3
4
6 podman-export - Export a container's filesystem contents as a tar
7 archive
8
9
11 podman export [options] container
12
13
15 podman export exports the filesystem of a container and saves it as a
16 tarball on the local machine. podman export writes to STDOUT by default
17 and can be redirected to a file using the --output flag. Note: : is a
18 restricted character and cannot be part of the file name.
19
20
21 podman [GLOBAL OPTIONS]
22
23
24 podman export [GLOBAL OPTIONS]
25
26
27 podman export [OPTIONS] CONTAINER
28
29
31 --output, -o
32
33
34 Write to a file, default is STDOUT
35
36
37 --help, -h
38
39
40 Print usage statement
41
42
44 $ podman export -o redis-container.tar 883504668ec465463bc0fe7e63d53154ac3b696ea8d7b233748918664ea90e57
45
46 $ podman export > redis-container.tar 883504668ec465463bc0fe7e63d53154ac3b696ea8d7b233748918664ea90e57
47
48
49
51 podman(1), podman-import(1)
52
53
55 August 2017, Originally compiled by Urvashi Mohnani
56 ⟨umohnani@redhat.com⟩
57
58
59
60 podman-export(1)