21 lines
425 B
Plaintext
21 lines
425 B
Plaintext
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('部署') {
|
|
steps {
|
|
echo 'Deploying...'
|
|
sh "cd /home/cq/data&&git pull"
|
|
sh "cd /home/cq/data&&docker compose restart"
|
|
}
|
|
}
|
|
}
|
|
post{
|
|
success {
|
|
echo 'Deployment finished successfully.'
|
|
}
|
|
failure {
|
|
echo 'Deployment failed.'
|
|
}
|
|
}
|
|
}
|