Jenkins/Jenkinsfile

10 lines
146 B
Plaintext
Raw Normal View History

2018-12-13 15:23:34 +00:00
pipeline {
agent none
stages {
2018-12-13 15:24:20 +00:00
stage('test') {
2018-12-13 15:23:34 +00:00
steps {
sh 'docker ps'
}
}
}
2018-12-13 15:19:14 +00:00
}