github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/docs/source/markdown/podman-manifest-exists.1.md (about)

     1  % podman-manifest-exists(1)
     2  
     3  ## NAME
     4  podman\-manifest\-exists - Check if the given manifest list exists in local storage
     5  
     6  ## SYNOPSIS
     7  **podman manifest exists** *manifest*
     8  
     9  ## DESCRIPTION
    10  **podman manifest exists** checks if a manifest list exists on local storage. Podman will
    11  return an exit code of `0` when the manifest is found. A `1` will be returned otherwise.
    12  An exit code of `125` indicates there was another issue.
    13  
    14  
    15  ## OPTIONS
    16  
    17  #### **--help**, **-h**
    18  
    19  Print usage statement.
    20  
    21  ## EXAMPLE
    22  
    23  Check if a manifest list called `list1` exists (the manifest list does actually exist).
    24  ```
    25  $ podman manifest exists list1
    26  $ echo $?
    27  0
    28  $
    29  ```
    30  
    31  Check if an manifest called `mylist` exists (the manifest list does not actually exist).
    32  ```
    33  $ podman manifest exists mylist
    34  $ echo $?
    35  1
    36  $
    37  ```
    38  
    39  ## SEE ALSO
    40  **[podman(1)](podman.1.md)**, **[podman-manifest(1)](podman-manifest.1.md)**
    41  
    42  ## HISTORY
    43  January 2021, Originally compiled by Paul Holzinger `<paul.holzinger@web.de>`