名称

podman-image-exists - 检查本地存储中是否存在镜像

语法

podman image exists image

描述

podman image exists 检查本地存储中是否存在镜像。可以使用镜像的 ID名称 作为输入。当找到镜像时,Podman 返回退出代码 0。否则返回 1。退出代码 125 表示访问本地存储时出现问题。

选项

--help, -h

打印使用说明

示例

检查名为 webclient 的镜像是否存在于本地存储中(镜像确实存在)

$ podman image exists webclient
$ echo $?
0

检查名为 webbackend 的镜像是否存在于本地存储中(镜像实际上不存在)

$ podman image exists webbackend
$ echo $?
1

另请参见

podman(1), podman-image(1)

历史

2018 年 11 月,最初由 Brent Baude(bbaude at redhat dot com)编译