博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Docker expose all ports or range of ports from 7000 to 8000
阅读量:5948 次
发布时间:2019-06-19

本文共 1436 字,大约阅读时间需要 4 分钟。

hot3.png

Since Docker 1.5 you can now expose a range of ports to other linked containers using:

The Dockerfile  command:

EXPOSE 7000-8000

or The Docker  command:

docker run --expose=7000-8000

Or instead you can publish a range of ports to the host machine via Docker  command:

docker run -p 7000-8000:7000-8000    

以上只是声明要导出的端口, 

这样写就可以直接导出

docker run -it --privileged --name e1 -p 7000-7010:7000-7010/tcp  <镜像id>

/bin/bash

在主机里执行 netstat -aon |grep 700  可以看到

tcp6       0      0 :::7000                 :::*                    LISTEN      off (0.00/0/0)tcp6       0      0 :::7001                 :::*                    LISTEN      off (0.00/0/0)tcp6       0      0 :::7002                 :::*                    LISTEN      off (0.00/0/0)tcp6       0      0 :::7003                 :::*                    LISTEN      off (0.00/0/0)tcp6       0      0 :::7004                 :::*                    LISTEN      off (0.00/0/0)tcp6       0      0 :::7005                 :::*                    LISTEN      off (0.00/0/0)tcp6       0      0 :::7006                 :::*                    LISTEN      off (0.00/0/0)tcp6       0      0 :::7007                 :::*                    LISTEN      off (0.00/0/0)tcp6       0      0 :::7008                 :::*                    LISTEN      off (0.00/0/0)tcp6       0      0 :::7009                 :::*                    LISTEN      off (0.00/0/0)

 

转载于:https://my.oschina.net/mingyuejingque/blog/1810715

你可能感兴趣的文章
django中聚合aggregate和annotate GROUP BY的使用方法
查看>>
TFS简介
查看>>
docker管理平台 shipyard安装
查看>>
Bootstrap3 栅格系统-简介
查看>>
ADODB类库操作查询数据表
查看>>
博客搬家了
查看>>
Python中使用ElementTree解析xml
查看>>
sed处理文本
查看>>
jquery 操作iframe、frameset
查看>>
解决vim中不能使用小键盘
查看>>
jenkins权限管理,实现不同用户组显示对应视图views中不同的jobs
查看>>
我的友情链接
查看>>
CentOS定时同步系统时间
查看>>
批量删除用户--Shell脚本
查看>>
如何辨别android开发包的安全性
查看>>
Eclipse Java @Override 报错
查看>>
交换机之间的VLAN通信(trunk)
查看>>
heartbeat-gui
查看>>
关于一阶逻辑中实例化的可满足性问题
查看>>
cut命令用法讲解
查看>>