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 --quiet, -q
49
50
51 Suppress the progress output
52
53
54 --help, -h
55
56
57 Print usage statement
58
59
61 $ podman load --quiet -i fedora.tar
62
63
64
65 $ podman load -q -i fedora.tar
66
67
68
69 $ podman load < fedora.tar
70 Getting image source signatures
71 Copying blob sha256:5bef08742407efd622d243692b79ba0055383bbce12900324f75e56f589aedb0
72 0 B / 4.03 MB [---------------------------------------------------------------]
73 Copying config sha256:7328f6f8b41890597575cbaadc884e7386ae0acc53b747401ebce5cf0d624560
74 0 B / 1.48 KB [---------------------------------------------------------------]
75 Writing manifest to image destination
76 Storing signatures
77 Loaded image: registry.fedoraproject.org/fedora:latest
78
79
80
81 $ cat fedora.tar | podman load
82 Getting image source signatures
83 Copying blob sha256:5bef08742407efd622d243692b79ba0055383bbce12900324f75e56f589aedb0
84 0 B / 4.03 MB [---------------------------------------------------------------]
85 Copying config sha256:7328f6f8b41890597575cbaadc884e7386ae0acc53b747401ebce5cf0d624560
86 0 B / 1.48 KB [---------------------------------------------------------------]
87 Writing manifest to image destination
88 Storing signatures
89 Loaded image: registry.fedoraproject.org/fedora:latest
90
91
92
94 podman(1), podman-save(1), podman-tag(1)
95
96
98 July 2017, Originally compiled by Urvashi Mohnani umohnani@redhat.com
99 ⟨mailto:umohnani@redhat.com⟩
100
101
102
103 podman-load(1)()