名称¶
podman-network-exists - 检查给定网络是否存在
概要¶
podman network exists 网络
描述¶
podman network exists 检查网络是否存在。可以使用网络的名称或ID作为输入。如果找到网络,Podman 返回退出代码 0
。否则返回 1
。退出代码 125
表示存在其他问题。
选项¶
--help, -h¶
打印使用说明
示例¶
检查指定网络是否存在(网络确实存在)
$ podman network exists net1
$ echo $?
0
检查不存在的网络是否存在
$ podman network exists webbackend
$ echo $?
1
参见¶
历史¶
2021 年 1 月,最初由 Paul Holzinger 编译 <[email protected]>