1.connect介绍
Docker网络命令connect是用来将容器连接到网络。
2.connect用法
docker network connect [参数] NETWORK CONTAINER
[root@centos79 ~]# docker network connect --helpUsage: docker network connect [OPTIONS] NETWORK CONTAINERConnect a container to a networkOptions:--alias strings Add network-scoped alias for the container--driver-opt strings driver options for the network--ip string IPv4 address (e.g., "172.30.100.104")--ip6 string IPv6 address (e.g., "2001:db8::33")--link list Add link to another container--link-local-ip strings Add a link-local address for the container
[root@centos79 ~]#
3.connect样例
3.1.将正在运行的容器连接到网络
命令:
docker network connect mynet1 alpine1
[root@centos79 ~]# docker inspect alpine1
[{............"Ne