pipeline { agent none stages { stage('Example Build') { agent { docker 'maven:3-alpine' } steps { sh 'docker ps' } } } }