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