给运行中的docker容器添加新的端口
https://blog.csdn.net/zuoshenglo/article/details/78402772
简单的说,2种。
iptables 端口转发,commit 容器为一个images,重新运行一个新的容器
DOCKER 给运行中的容器添加映射端口
方法1
1、获得容器IP
将
container_name
换成实际环境中的容器名
docker inspect `container_name` | grep IPAddress
- 1
2、 iptable转发端口
将容器的8000端口映射到docker主机的8001端口
iptables -t nat -A DOCKER -p tcp --dport 8001 -j DNAT --to-destination 172.17.0.19:8000
- [root@lixl appinstall]# iptables -t nat -A DOCKER -p tcp –dport 18001 -j DNAT –to-destination 172.17.0.1:2181
[root@lixl appinstall]# iptables -t nat -A DOCKER -p tcp –dport 18003 -j DNAT –to-destination 172.17.0.3:2181
[root@lixl appinstall]# iptables -t nat -A DOCKER -p tcp –dport 18006 -j DNAT –to-destination 172.17.0.6:2181
方法2
1.提交一个运行中的容器为镜像
docker commit containerid foo/live
- 1
2.运行镜像并添加端口
docker run -d -p 8000:80 foo/live /bin/bash
转载请注明:SuperIT » 给运行中的docker容器添加新的端口