怎么给运行中的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
  • 2
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值