fix(ci): add login info to docker publish

This commit is contained in:
andreas 2019-05-14 15:21:26 +02:00
parent 1184b95e61
commit 043347c4bb

2
Jenkinsfile vendored
View File

@ -19,7 +19,7 @@ pipeline {
echo 'Starting docker image build'
script {
docker.withRegistry("https://pkg.northcode.no") {
docker.withRegistry("https://pkg.northcode.no", 'docker-login') {
def image = docker.build("pkg.northcode.no/telegram-leetbot")
image.push()
}