# docker网络设置
网络设置
# 查看网络
docker network ls
# 新建网络
docker network create my-net
or docker network create --subnet=172.18.0.0/16 mynetwork
# 将容器加入网络
docker network connect my-net tomcat
docker network connect my-net mysql
# 查看网络信息
docker network inspect my-net
# 容器绑定ip 参数
--net mynetwork --ip 172.18.0.2
# 清理网络
docker network prune
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# docker network command
Commands:
connect Connect a container to a network
create Create a network
disconnect Disconnect a container from a network
inspect Display detailed information on one or more networks
ls List networks
prune Remove all unused networks
rm Remove one or more networks
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
← docker基本命令 docker其他操作 →