node { stage('Preparation') { properties([ parameters([ ]) ]) } stage('checkout: Check out from version control') { checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's487197', url: 'https://git.wmi.amu.edu.pl/s487197/ium_487197']]]) } stage('Dockerfile'){ def testImage = docker.image('s487197/ium:54') testImage.inside{ withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) { sh 'dvc remote modify --local ium_ssh_remote password IUM@2021' sh 'dvc pull' } } } }