очистка от неиспользуемых образов
Some checks failed
Hedgehog_server_CI/ServerMonitorBot/pipeline/head There was a failure building this commit
Hedgehog_server_CD/ServerMonitorBot/pipeline/head This commit looks good

This commit is contained in:
2023-11-21 13:47:06 +03:00
parent 35a8d6a8c7
commit de303fcd8e
2 changed files with 12 additions and 2 deletions

View File

@@ -43,7 +43,9 @@ pipeline {
}
stage('Prune images') {
steps {
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'docker image prune -f'
sh """
sshpass -p ${SSH_PASS} ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} -p ${SSH_PORT} 'docker image prune -f'
"""
}
}
}