我已经使用docker安装了Jenkins,尽管我已经跳过了手动设置。当我构建映像并运行它时(仍然有很多事情要做),我需要在浏览器中键入IP和端口以打开Jenkins仪表板。
我的问题是,我可以在运行该映像的泊坞窗中使用脚本自动执行构建的Jenkins应该在浏览器中打开的工作吗?
任何需要运行的命令,请对其进行注释
我试图通过命令打开浏览器,但最终出现错误。任何人都可以使用我的自动化工具。
先感谢您
转到您的wifi信息并获取系统。例如,您的HOST IP使用192.168.1.1 ifconfig or ipconfig和用户名,whoami然后在容器中,您可以像
ifconfig or ipconfig
whoami
ssh user_name@192.168.1.1 'DISPLAY=:0 firefox http://192.168.1.1:8080' 适用于linux。
ssh user_name@192.168.1.1 'DISPLAY=:0 firefox http://192.168.1.1:8080'
如果主机是窗口,则可以运行
ssh user_name@192.168.1.1 'DISPLAY=:0 start http://192.168.1.1:8080'
如果您想避免使用用户名和密码,则只需使用公钥-私钥,然后使用该密钥将您的公钥放入容器和ssh。
要么 docker exec -it container_name ash|bash -c ssh user_name@192.168.1.1 'DISPLAY=:0 firefox http://192.168.1.1:8080'
docker exec -it container_name ash|bash -c ssh user_name@192.168.1.1 'DISPLAY=:0 firefox http://192.168.1.1:8080'
您可以在os上运行不同的命令库
if [[ "$OSTYPE" == "linux-gnu" ]]; then # ... elif [[ "$OSTYPE" == "darwin"* ]]; then # Mac OSX elif [[ "$OSTYPE" == "cygwin" ]]; then # POSIX compatibility layer and Linux environment emulation for Windows elif [[ "$OSTYPE" == "msys" ]]; then # Lightweight shell and GNU utilities compiled for Windows (part of MinGW) elif [[ "$OSTYPE" == "win32" ]]; then # I'm not sure this can happen. elif [[ "$OSTYPE" == "freebsd"* ]]; then # ... else # Unknown. fi
https://support.rackspace.com/how-to/logging-in-with-an-ssh-private-key-on- linuxmac/