feature/task-30-docker #31

Merged
L_DelOff merged 76 commits from feature/task-30-docker into master 2023-11-22 11:36:41 +03:00
Showing only changes of commit 0fecaa501b - Show all commits

View File

@@ -17,12 +17,13 @@ pipeline {
sh 'mvn -B -DskipTests -X clean package spring-boot:repackage'
}
}
}
stage('Prune images') {
steps {
sh """
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'docker image prune -f'
"""
stage('Prune images') {
steps {
sh """
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'docker image prune -f'
"""
}
}
}
}