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