加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Jenkinsfile 728 Bytes
一键复制 编辑 原始数据 按行查看 历史
shaohai.li 提交于 2022-10-23 15:50 . feat: update docker cmd
def aly_username = "root" // 阿里云服务器用户名
def aly_server_ip = "101.42.150.216" // 阿里云服务器IP地址
def aly_workspace = "/home" // 阿里云服务器工作目录
def aly_project_name = "vue-admin-all" // 阿里云服务器部署项目名称
stage("部署项目")
node {
sshagent(credentials: ['ssh-txy-deployment']) {
sh "ssh -o StrictHostKeyChecking=yes ${aly_username}@${aly_server_ip} \" \
cd ${aly_workspace}/${aly_project_name} \
&& git pull \
\""
sh "ssh -o StrictHostKeyChecking=yes ${aly_username}@${aly_server_ip} \" \
cd ${aly_workspace}/${aly_project_name} \
&& npm run docker_restart \
\""
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化