本文介绍了如何独立获取docker0 ip地址平台的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在构建的应用程序需要使用docker0的IP地址,而不使用 ip addr show dev docker0
之类的命令。有什么办法可以使用 docker
命令从Docker本身获取它吗?至少 docker info
似乎没有显示它。
I'm building application which needs to have ip address of docker0 without using commands like ip addr show dev docker0
. Is there any way to get it from docker itself maybe using docker
command or something else? At least the docker info
doesn't seem to show it.
推荐答案
docker0
网络接口与默认 网桥
。
您可以使用。
您可以使用-format
选项以获取特定值:
docker0
network interface is associated with the default docker network bridge
.
You can access info about it with the docker network inspect bridge
.
You can use the --format
option to get specific value:
$ docker network inspect bridge --format='{{json .IPAM.Config}}'
[{"Subnet":"172.17.0.0/16","Gateway":"172.17.0.1"}]
这篇关于如何独立获取docker0 ip地址平台的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!