Jenkins/Jenkinsfile

11 lines
202 B
Plaintext
Raw Normal View History

2018-12-13 15:23:34 +00:00
pipeline {
agent none
stages {
stage('Example Build') {
agent { docker 'maven:3-alpine' }
steps {
sh 'docker ps'
}
}
}
2018-12-13 15:19:14 +00:00
}