docker之网络管理
一、安装网桥管理工具
[root@node03 web]# yum install bridge-utils -y
二、docker网络的4种模式
- host模式,使用--net=host指定。
- container模式,使用--net=container:NAME_or_ID指定。
- none模式,使用--net=none指定。
- bridge模式,使用--net=bridge指定,默认设置。
删除命令
[root@node03 web]# docker network ls
[root@node03 web]# docker network rm host
二、查看网桥所有信息
2.host模式
[root@node03 web]# docker run -itd --name=ubuntu_test --net host ubuntu