From adb2382a68d8bc133ff486f367b999ca404604fe Mon Sep 17 00:00:00 2001 From: andyjk15 Date: Wed, 19 Feb 2020 12:51:25 +0000 Subject: [PATCH] [19.02.20] Trying to fix node issue --- configuration/pipelines/build.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration/pipelines/build.groovy b/configuration/pipelines/build.groovy index ea6ab65..e10aa31 100644 --- a/configuration/pipelines/build.groovy +++ b/configuration/pipelines/build.groovy @@ -75,12 +75,12 @@ try { stage('Tag Repository') { - withDockerServer([uri: "${env.DOCKER_REPOSITORY_TCP}"]) { + withDockerServer([uri: "tcp://registry.cryptosky.me:4243"]) { withDockerRegistry([credentialsId: 'Registry', url: "${env.DOCKER_REPOSITORY_URL}"]) { def image = docker.build("${env.DOCKER_REPOSITORY}/db-gateway:${env.APPLICATION_VERSION}") image.push() -// def latest = docker.build("${env.DOCKER_REPOSITORY}/db-gateway:latest") -// latest.push() + def latest = docker.build("${env.DOCKER_REPOSITORY}/db-gateway:latest") + latest.push() } } }