First jenkins build

This commit is contained in:
Dominik Chilla 2019-06-13 10:41:50 +02:00
parent 2f7ac48dd2
commit abeadc7052

6
Jenkinsfile vendored
View File

@ -20,4 +20,10 @@ node {
sh 'echo "Tests passed"' sh 'echo "Tests passed"'
} }
} }
stage('Push image') {
docker.withRegistry('http://dockreg-fra.zwackl.local:5000') {
app.push()
}
}
} }