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