очистка от неиспользуемых образов
parent
35a8d6a8c7
commit
de303fcd8e
|
@ -43,7 +43,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('Prune images') {
|
stage('Prune images') {
|
||||||
steps {
|
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'
|
||||||
|
"""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,12 @@ pipeline {
|
||||||
args '-v /root/.m2:/root/.m2'
|
args '-v /root/.m2:/root/.m2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
environment {
|
||||||
|
SSH_HOST = credentials('SSH_HOST')
|
||||||
|
SSH_PORT = credentials('SSH_PORT')
|
||||||
|
SSH_USER = credentials('SSH_USER')
|
||||||
|
SSH_PASS = credentials('SSH_PASS')
|
||||||
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
|
@ -14,7 +20,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('Prune images') {
|
stage('Prune images') {
|
||||||
steps {
|
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'
|
||||||
|
"""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue