我想以“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.
原文链接:https://www.f2er.com/docker/532585.html要获取有关正在运行的容器的任何信息,请使用docker inspect
.
如果您知道容器的内部端口号(该端口号已映射),则可以键入(from this comment):
docker inspect --format '{{ (index (index .NetworkSettings.Ports "8080/tcp") 0).HostPort }}' <Container-Name/ID>