👷 Remove image from host

This commit is contained in:
andreas.dinauer 2025-11-01 21:12:18 +01:00
parent 49129b5f48
commit 4d3fe1953b

7
Jenkinsfile vendored
View File

@ -34,5 +34,12 @@ pipeline {
} }
} }
} }
stage('Remove image from host') {
steps {
script {
sh "docker image rm --force ${env.IMAGE}"
}
}
}
} }
} }