我正在使用ssh管道插件将ssh插入我的docker主机,拉出并运行映像
stage("Remote SSH 2") {
.
.
.
writeFile file: 'run.sh', text: 'docker run --name blahxyz:latest && exit;'
sshScript remote: remote, script: "run.sh"
sshRemove remote: remote, path: "run.sh"
.
.
.
}
这是我需要帮助的地方。它运行后永远不会继续运行,因为命令行上的容器会在其运行的npm启动时执行该操作,因此不会退出。如何运行它并退出ssh,以便继续前进?香港专业教育学院试图添加&现在&&退出,但我只是挂断