1podman-load(1)() podman-load(1)()
2
3
4
6 podman-load - Load image(s) from a tar archive into container storage
7
8
10 podman load [options]
11
12
13 podman image load [options]
14
15
17 podman load loads an image from either an oci-archive or a docker-ar‐
18 chive stored on the local machine into container storage. podman load
19 reads from stdin by default or a file if the input option is set. pod‐
20 man load is used for loading from the archive generated by podman save,
21 that includes the image parent layers. To load the archive of con‐
22 tainer's filesystem created by podman export, use podman import.
23
24
25 The local client further supports loading an oci-dir or a docker-dir as
26 created with podman save (1).
27
28
29 The quiet option suppresses the progress output when set. Note: : is a
30 restricted character and cannot be part of the file name.
31
32
33 podman [GLOBAL OPTIONS]
34
35
36 podman load [GLOBAL OPTIONS]
37
38
39 podman load [OPTIONS]
40
41
43 --input, -i=input
44 Read from archive file, default is STDIN.
45
46
47 The remote client requires the use of this option.
48
49
50 NOTE: Use the environment variable TMPDIR to change the temporary stor‐
51 age location of container images. Podman defaults to use /var/tmp.
52
53
54 --quiet, -q
55 Suppress the progress output
56
57
58 --help, -h
59 Print usage statement
60
61
63 $ podman load --quiet -i fedora.tar
64
65
66
67 $ podman load -q -i fedora.tar
68
69
70
71 $ podman load < fedora.tar
72 Getting image source signatures
73 Copying blob sha256:5bef08742407efd622d243692b79ba0055383bbce12900324f75e56f589aedb0
74 0 B / 4.03 MB [---------------------------------------------------------------]
75 Copying config sha256:7328f6f8b41890597575cbaadc884e7386ae0acc53b747401ebce5cf0d624560
76 0 B / 1.48 KB [---------------------------------------------------------------]
77 Writing manifest to image destination
78 Storing signatures
79 Loaded image: registry.fedoraproject.org/fedora:latest
80
81
82
83 $ cat fedora.tar | podman load
84 Getting image source signatures
85 Copying blob sha256:5bef08742407efd622d243692b79ba0055383bbce12900324f75e56f589aedb0
86 0 B / 4.03 MB [---------------------------------------------------------------]
87 Copying config sha256:7328f6f8b41890597575cbaadc884e7386ae0acc53b747401ebce5cf0d624560
88 0 B / 1.48 KB [---------------------------------------------------------------]
89 Writing manifest to image destination
90 Storing signatures
91 Loaded image: registry.fedoraproject.org/fedora:latest
92
93
94
96 podman(1), podman-save(1)
97
98
100 July 2017, Originally compiled by Urvashi Mohnani umohnani@redhat.com
101 ⟨mailto:umohnani@redhat.com⟩
102
103
104
105 podman-load(1)()