5 Commits

Author SHA1 Message Date
5bd78701e9 hotfix
All checks were successful
Hedgehog_server_CD/ServerMonitorBot/pipeline/head This commit looks good
2023-11-22 18:58:53 +03:00
74e5e2b017 hotfix
Some checks failed
Hedgehog_server_CD/ServerMonitorBot/pipeline/head There was a failure building this commit
2023-11-22 18:55:42 +03:00
30772ec123 Merge pull request 'fix' (#33) from feature/task-30-docker into master
All checks were successful
Hedgehog_server_CD/ServerMonitorBot/pipeline/head This commit looks good
Reviewed-on: #33
2023-11-22 18:51:11 +03:00
5b0decff19 Merge pull request 'Удаление старых образов перед деплоем' (#32) from feature/task-30-docker into master
Some checks failed
Hedgehog_server_CD/ServerMonitorBot/pipeline/head There was a failure building this commit
Reviewed-on: #32
2023-11-22 18:48:16 +03:00
24839dc3fe Merge pull request 'feature/task-30-docker' (#31) from feature/task-30-docker into master
All checks were successful
Hedgehog_server_CD/ServerMonitorBot/pipeline/head This commit looks good
Reviewed-on: #31
2023-11-22 11:36:39 +03:00

View File

@@ -40,7 +40,7 @@ pipeline {
stage('Remove old image') {
steps {
sh """
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'docker image rm -f ${IMAGE_NAME}:${IMAGE_VERSION} || true'
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'docker image rm -f ${IMAGE_NAME}-app:${IMAGE_VERSION} || true'
"""
}
}