ium_444018/Docker/Jenkinsfile
2022-03-30 09:05:37 +02:00

13 lines
236 B
Groovy

pipeline {
agent none
stages {
stage('Launch Docker') {
agent {
docker { image 'sparafinski/ium' }
}
steps {
sh 'ls -la'
}
}
}
}