ium_470607/lab2/Jenkinsfile_dataset_stats

12 lines
281 B
Plaintext
Raw Normal View History

2021-04-11 18:41:00 +02:00
node {
2021-04-11 18:49:02 +02:00
docker.image('kubakonieczny/ium:v1.0').withRun('-t') { c ->
2021-04-11 18:46:58 +02:00
docker.image('kubakonieczny/ium:v1.0').inside {
stage('Test') {
sh 'cat /etc/issue'
sh 'ls -lah'
}
2021-03-28 17:41:49 +02:00
}
}
2021-04-11 18:49:02 +02:00
sh 'docker logs ${c.id}'
2021-03-28 17:41:49 +02:00
}