ium_478841/jenkins/Jenkinstats_docker

10 lines
226 B
Plaintext
Raw Normal View History

2022-04-03 23:47:08 +02:00
node {
checkout scm
stage('Show stats') {
docker.image('s478841-create-dataset').inside('-u root') {
sh 'ls -al'
sh 'chmod +x /app/data_stats.sh && /app/data_stats.sh'
2022-04-03 23:32:52 +02:00
}
}
}