github.com/containers/podman/v5@v5.1.0-rc1/docs/source/markdown/podman-manifest-create.1.md.in (about)

     1  % podman-manifest-create 1
     2  
     3  ## NAME
     4  podman\-manifest\-create - Create a manifest list or image index
     5  
     6  ## SYNOPSIS
     7  **podman manifest create** [*options*] *listnameorindexname* [*imagename* ...]
     8  
     9  ## DESCRIPTION
    10  
    11  Creates a new manifest list and stores it as an image in local storage using
    12  the specified name.
    13  
    14  If additional images are specified, they are added to the newly-created list or
    15  index.
    16  
    17  ## OPTIONS
    18  
    19  #### **--all**
    20  
    21  If any of the images added to the new list or index are
    22  themselves lists or indexes, add all of their contents.  By default, only one
    23  image from such a list is added to the newly-created list or index.
    24  
    25  #### **--amend**, **-a**
    26  
    27  If a manifest list named *listnameorindexname* already exists, modify the
    28  preexisting list instead of exiting with an error.  The contents of
    29  *listnameorindexname* are not modified if no *imagename*s are given.
    30  
    31  #### **--annotation**=*value*
    32  
    33  Set an annotation on the newly-created image index.
    34  
    35  @@option tls-verify
    36  
    37  ## EXAMPLES
    38  
    39  Create the specified manifest.
    40  ```
    41  podman manifest create mylist:v1.11
    42  9cfd24048d5fc80903f088f1531a21bff01172abe66effa8941a4c2308dc745f
    43  ```
    44  
    45  Create the specified manifest manifest or modify it if it previously exist.
    46  ```
    47  podman manifest create --amend mylist:v1.11
    48  9cfd24048d5fc80903f088f1531a21bff01172abe66effa8941a4c2308dc745f
    49  ```
    50  
    51  Create the named manifest including the specified image matching the current platform.
    52  ```
    53  podman manifest create mylist:v1.11 docker://fedora
    54  5c2bc76bfb4ba6665a7973f7e1c05ee0536b4580637f27adc9fa5a4b2bc03cf1
    55  ```
    56  
    57  Create the named manifest including all images referred to with the specified image reference.
    58  ```
    59  podman manifest create --all mylist:v1.11 docker://fedora
    60  30330571e79c65288a4fca421d9aed29b0210d57294d9c2056743fdcf6e3967b
    61  ```
    62  
    63  ## SEE ALSO
    64  **[podman(1)](podman.1.md)**, **[podman-manifest(1)](podman-manifest.1.md)**