1podman-manifest-create(1) General Commands Manual podman-manifest-create(1)
2
3
4
6 podman-manifest-create - Create a manifest list or image index
7
8
10 podman manifest create [options] listnameorindexname [imagename ...]
11
12
14 Creates a new manifest list and stores it as an image in local storage
15 using the specified name.
16
17
18 If additional images are specified, they are added to the newly-created
19 list or index.
20
21
23 --all
24 If any of the images added to the new list or index are themselves
25 lists or indexes, add all of their contents. By default, only one im‐
26 age from such a list is added to the newly-created list or index.
27
28
29 --amend, -a
30 If a manifest list named listnameorindexname already exists, modify the
31 preexisting list instead of exiting with an error. The contents of
32 listnameorindexname are not modified if no *imagename*s are given.
33
34
35 --tls-verify
36 Require HTTPS and verify certificates when contacting registries (de‐
37 fault: true). If explicitly set to true, TLS verification is used. If
38 set to false, TLS verification is not used. If not specified, TLS ver‐
39 ification is used unless the target registry is listed as an insecure
40 registry in containers-registries.conf(5)
41
42
44 podman manifest create mylist:v1.11
45 9cfd24048d5fc80903f088f1531a21bff01172abe66effa8941a4c2308dc745f
46 podman manifest create --amend mylist:v1.11
47 9cfd24048d5fc80903f088f1531a21bff01172abe66effa8941a4c2308dc745f
48
49
50 podman manifest create mylist:v1.11 docker://fedora
51 5c2bc76bfb4ba6665a7973f7e1c05ee0536b4580637f27adc9fa5a4b2bc03cf1
52
53
54 podman manifest create --all mylist:v1.11 docker://fedora
55 30330571e79c65288a4fca421d9aed29b0210d57294d9c2056743fdcf6e3967b
56
57
58
60 podman(1), podman-manifest(1)
61
62
63
64 podman-manifest-create(1)