NAME¶ 名称
podman-volume-exists - Check if the given volume exists
podman-volume-exists - 检查给定卷是否存在
SYNOPSIS¶ 概要
podman volume exists volume
DESCRIPTION¶ 描述
podman volume exists checks if a volume exists. Podman returns an exit code
of 0
when the volume is found. A 1
is returned otherwise. An exit code of
125
indicates there was another issue.
podman volume exists 检查卷是否存在。当找到卷时,Podman 返回退出码 0
。否则返回 1
。退出码 125
表示存在其他问题。
OPTIONS¶ 选项
--help, -h¶ --help,-h ¶
Print usage statement 打印使用说明
EXAMPLE¶ 例子 ¶
Check if a volume called myvol
exists (the volume does actually exist).
检查是否存在名为 myvol
的卷(实际上卷确实存在)。
$ podman volume exists myvol
$ echo $?
0
$
Check if a volume called mysql
exists (the volume does not actually exist).
检查是否存在名为 mysql
的卷(实际上卷并不存在)。
$ podman volume exists mysql
$ echo $?
1
$
SEE ALSO¶ 参见 ¶
podman(1), podman-volume(1)
podman(1),podman-volume(1)
HISTORY¶ 历史 ¶
January 2021, Originally compiled by Paul Holzinger <paul.holzinger@web.de>
2021 年 1 月,最初由 Paul Holzinger 编写 <paul.holzinger@web.de>