一切福田,不離方寸,從心而覓,感無不通。

docker

docker 如何和主机共享同一个网络, docker开启host模式

Docker容器运行的时候有host、bridge、none三种网络可供配置。默认是bridge,即桥接网络,以桥接模式连接到宿主机;host是宿主网络,即与宿主机共用网络;none则表示无网络,容器将无法联网。
当容器使用host网络时,容器与宿主共用网络,这样就能在容器中访问宿主机网络,那么容器的localhost就是宿主机的localhost。

 

 

from:https://blog.csdn.net/xiaoyou625/article/details/111876039