Docker网络连接
踏歌行 2023-02-25
工具
自动化
阅读量:
# 基本命令
docker network ls
查看网络docker network create
创建自定义网络模式docker network inspect custom_network
查看两容器的具体 IP 信息docker network rm custom_network
删除网络
# docker network
docker network create custom_network
docker run -di --name custom_bbox01 --net custom_network busybox
docker run -di --name custom_bbox02 --net custom_network busybox
两容器间可以分别使用具体 IP 和容器名称进行网络通信
# 指定容器的ip:
docker network create --subnet=XXX.XX.0.1/16 custom_network
docker run -di --name custom_bbox01 --net custom_network --ip XXX.XX.0.2 busybox
docker run -di --name custom_bbox02 --net custom_network --ip XXX.XX.0.3 busybox
# docker-compose中连接
# docker容器内安装ping
apt-get update
apt-get install -y iputils-ping
1
2
2