jenkins-automaintenance/Jenkinsfile

26 lines
461 B
Groovy

pipeline {
agent any
triggers {
cron("*/15 * * * *") // Clean up every 15 minutes
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
agent {
label 'agent1'
}
stage('Clean docker images') {
steps {
sh 'docker system prune -a -f'
sh 'docker network prune -f'
}
}
}
}