Update Jenkinsfile

This commit is contained in:
lwj9812 2024-03-22 11:26:06 +09:00 committed by GitHub
parent d470462bb3
commit fb5fcdb0a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

2
Jenkinsfile vendored
View file

@ -70,7 +70,7 @@ pipeline {
stage('Clean Up Docker Images on Jenkins Server'){ stage('Clean Up Docker Images on Jenkins Server'){
steps { steps {
echo 'Cleaning up unused Docker images on Jenkins server' echo 'Cleaning up unused Docker images on Jenkins server'
sh "docker image prune -f --all --filter \"until=1h\"" sh "docker image prune -a -f"
} }
} }