NAME¶ 名称
podman-pod-exists - Check if a pod exists in local storage
podman-pod-exists - 检查本地存储中是否存在一个 pod
SYNOPSIS¶ 概要
podman pod exists pod
DESCRIPTION¶ 描述
podman pod exists checks if a pod exists in local storage. The ID or Name
of the pod may be used as input. Podman returns an exit code
of 0
when the pod is found. A 1
is returned otherwise. An exit code of 125
indicates there
was an issue accessing the local storage.
podman pod exists 检查本地存储中是否存在一个 pod。可以使用 pod 的 ID 或名称作为输入。当找到该 pod 时,Podman 返回退出码 0
。否则返回 1
。退出码 125
表示访问本地存储时出现问题。
EXAMPLES¶ 示例
Check if specified pod exists in local storage (the pod does actually exist):
检查指定的 pod 是否存在于本地存储中(实际上该 pod 存在):
$ sudo podman pod exists web; echo $?
0
Check if specified pod exists in local storage (the pod does not actually exist):
检查指定的 pod 是否存在于本地存储中(实际上该 pod 不存在):
$ sudo podman pod exists backend; echo $?
1
SEE ALSO¶ 参见 ¶
HISTORY¶ 历史 ¶
December 2018, Originally compiled by Brent Baude (bbaude at redhat dot com)
2018 年 12 月,最初由 Brent Baude (bbaude at redhat dot com) 编译。