加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Jenkinsfile 883 Bytes
一键复制 编辑 原始数据 按行查看 历史
cheungming 提交于 2024-08-29 17:11 . code check
pipeline {
agent any
stages {
stage('检出代码') {
steps {
git credentialsId: 'gitee', url: 'https://gitee.com/cheungming/java-learning.git'
}
}
stage('编译代码') {
steps {
sh 'mvn clean install -Dmaven.test.skip=true'
}
}
stage('构建镜像并推送私有仓库') {
steps {
sh 'mvn clean -U package -pl gateway,oss -Dmaven.test.skip=true docker:build -DpushImage'
}
}
stage('docker-compose远程启动项目') {
steps {
sh 'scp docker-compose.yml 172.19.16.57:/root/docker/compose'
sh '''
ssh -tt root@172.19.16.57 << remotessh
cd /root/docker/compose
docker-compose down
docker-compose up -d
exit
remotessh
'''
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化