Jenkins/Jenkinsfile
2018-12-13 15:25:43 +00:00

10 lines
144 B
Groovy

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