Jenkins/Jenkinsfile
2018-12-13 15:24:20 +00:00

10 lines
146 B
Groovy

pipeline {
agent none
stages {
stage('test') {
steps {
sh 'docker ps'
}
}
}
}