github.com/containers/podman/v5@v5.1.0-rc1/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. 11 Podman returns an exit code of `0` when the manifest is found. A `1` is 12 returned otherwise. 13 An exit code of `125` indicates there was another issue. 14 15 16 ## OPTIONS 17 18 #### **--help**, **-h** 19 20 Print usage statement. 21 22 ## EXAMPLE 23 24 Check if a manifest list called `list1` exists (the manifest list does actually exist): 25 ``` 26 $ podman manifest exists list1 27 $ echo $? 28 0 29 ``` 30 31 Check if a manifest called `mylist` exists (the manifest list does not actually exist): 32 ``` 33 $ podman manifest exists mylist 34 $ echo $? 35 1 36 ``` 37 38 ## SEE ALSO 39 **[podman(1)](podman.1.md)**, **[podman-manifest(1)](podman-manifest.1.md)** 40 41 ## HISTORY 42 January 2021, Originally compiled by Paul Holzinger `<paul.holzinger@web.de>`