Update Jenkinsfile

This commit is contained in:
Gabriel Augendre 2018-05-03 11:26:19 +02:00 committed by GitHub
parent 5ccf341a51
commit fef58121f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
Jenkinsfile vendored
View file

@ -6,5 +6,12 @@ pipeline {
sh 'docker build --pull -t workout:jenkins .'
}
}
stage('test') {
steps {
sh 'db=`docker run --rm -d postgres`'
sh 'echo $db'
sh 'docker image ls'
}
}
}
}