ium_444517/Jenkinsfile_2

17 lines
281 B
Plaintext
Raw Normal View History

pipeline {
2022-04-03 12:30:04 +02:00
agent {
docker { image 'kambobdocker420/ium:version2.0' }
}
parameters {
}
stages {
stage('Stage 1') {
steps {
echo 'Hello world but for the second time!'
}
}
}
}