DOCKER 给运行中的容器添加映射端口
1、获得容器IP
将container_name换成实际环境中的容器名
docker inspect`container_name`|grepIPAddress
1
2、 iptable转发端口
将容器的8000端口映射到docker主机的8001端口
iptables -t nat -A DOCKER -p tcp --dport 8001 -j DNAT --to-destination 172.17.0.19:8000
1
2
1.提交一个运行中的容器为镜像
docker commit containerid foo/live
1
2.运行镜像并添加端口
docker run -d -p 8000:80 foo/live /bin/bash
原文: http://blog.csdn.net/github_29237033/article/details/46632647