From 043347c4bb3fe5492499b8ee0144fd43647446fe Mon Sep 17 00:00:00 2001 From: Andreas Larsen Date: Tue, 14 May 2019 15:21:26 +0200 Subject: [PATCH] fix(ci): add login info to docker publish --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 33615bc..4706d9d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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() }