👷 Remove Image from host

This commit is contained in:
andreas.dinauer 2025-11-01 21:12:36 +01:00
parent 08fbf78a76
commit 4bd0556f65

7
Jenkinsfile vendored
View File

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