Jenkins/Jenkinsfile
2018-12-13 15:23:34 +00:00

11 lines
202 B
Groovy

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