NAME 名称

podman-manifest-exists - Check if the given manifest list exists in local storage
podman-manifest-exists - 检查本地存储中是否存在给定的清单列表

SYNOPSIS 概要

podman manifest exists manifest
podman 清单存在清单

DESCRIPTION 描述

podman manifest exists checks if a manifest list exists on local storage. Podman returns an exit code of 0 when the manifest is found. A 1 is returned otherwise. An exit code of 125 indicates there was another issue.
podman 清单存在检查本地存储中是否存在清单列表。当找到清单时,Podman 返回退出代码 0 。否则返回 1 。退出代码 125 表示存在其他问题。

OPTIONS 选项

--help, -h --help,-h ¶

Print usage statement. 打印使用说明。

EXAMPLE 例子 ¶

Check if a manifest list called list1 exists (the manifest list does actually exist):
检查是否存在名为 list1 的清单列表(实际上清单列表确实存在):

$ podman manifest exists list1
$ echo $?
0

Check if a manifest called mylist exists (the manifest list does not actually exist):
检查是否存在名为 mylist 的清单(实际上清单列表实际上不存在):

$ podman manifest exists mylist
$ echo $?
1

SEE ALSO 参见 ¶

podman(1), podman-manifest(1)

HISTORY 历史 ¶

January 2021, Originally compiled by Paul Holzinger <paul.holzinger@web.de>
2021 年 1 月,最初由 Paul Holzinger 编写 <paul.holzinger@web.de>