github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/docs/source/markdown/podman-manifest-create.1.md (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 which should be 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 will be added to the newly-created list or index.
    24  
    25  ## EXAMPLES
    26  
    27  ```
    28  podman manifest create mylist:v1.11
    29  9cfd24048d5fc80903f088f1531a21bff01172abe66effa8941a4c2308dc745f
    30  ```
    31  
    32  ```
    33  podman manifest create mylist:v1.11 docker://fedora
    34  5c2bc76bfb4ba6665a7973f7e1c05ee0536b4580637f27adc9fa5a4b2bc03cf1
    35  ```
    36  
    37  ```
    38  podman manifest create --all mylist:v1.11 docker://fedora
    39  30330571e79c65288a4fca421d9aed29b0210d57294d9c2056743fdcf6e3967b
    40  ```
    41  
    42  ## SEE ALSO
    43  **[podman(1)](podman.1.md)**, **[podman-manifest(1)](podman-manifest.1.md)**