github-使用随机主机端口启动Docker容器并返回该端口以在其他地方使用它

前端之家收集整理的这篇文章主要介绍了github-使用随机主机端口启动Docker容器并返回该端口以在其他地方使用它 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想以“jenkins”作为服务来启动一个Docker容器,然后让Docker分配一个随机的主机端口.我知道该怎么做.

我如何从正在运行的容器中获取随机选择的端口,或告诉docker返回它,以便在jenkins github插件URL的构造中使用它

http://host-ip:random-host-port/web-hook
最佳答案
docker run -P完成后,容器正在运行,即with the EXPOSE(d) port mapped to an high port number on the host.

获取有关正在运行的容器的任何信息,请使用docker inspect.

如果您知道容器的内部端口号(该端口号已映射),则可以键入(from this comment):

 docker inspect --format '{{ (index (index .NetworkSettings.Ports "8080/tcp") 0).HostPort }}' <Container-Name/ID> 

offical Jenkins image uses EXPOSE 8080.

原文链接:https://www.f2er.com/docker/532585.html

猜你在找的Docker相关文章