gpt4 book ai didi

docker - Jenkins 在 Docker 上使用 SSL

转载 作者:太空宇宙 更新时间:2023-11-03 14:27:40 26 4
gpt4 key购买 nike

我正在尝试通过 Docker 使用 SSL 设置 Jenkins

sudo docker run --name trial  -d -p 443:8443  -p 50003:50000 -v /net/host/fs0/temp:/var/jenkins_home -httpPort=-1 -httpsPort=8443 -httpsKeyStore=/local/home/jenkins_keystore.jks -httpsKeyStorePassword=<password> --restart unless-stopped <ImageID>

容器已创建,但我在浏览器中找不到 jenkins https://< hostname >:443 .

最佳答案

你的标志顺序错误。所有与应用程序相关的标志都需要在 ImageID 之后设置,所有与 docker 相关的标志都在其之前。

sudo docker run --name trial -d -p 443:8443 -p 50003:50000 -v /net/host/fs0/temp:/var/jenkins_home --restart unless-stopped <ImageID> -httpPort=-1 -httpsPort=8443 -httpsKeyStore=/local/home/jenkins_keystore.jks -httpsKeyStorePassword=<password>

关于docker - Jenkins 在 Docker 上使用 SSL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55645718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com