diff --git a/Jenkinsfile b/Jenkinsfile index 35502a5..90d724c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,7 @@ pipeline { environment { REGISTRY_URL = "https://proxy.docker.dataekb.ru/local_cache" + REGISTRY = "proxy.docker.dataekb.ru/local_cache" BOT_IMAGE_NAME = "bot_open_sesam" TUNNEL_IMAGE_NAME = "tunnel_open_sesam" BOT_IMAGE_TAG = "latest" @@ -16,7 +17,7 @@ pipeline { script { docker.withRegistry("${REGISTRY_URL}", 'jenkins_harbor') { def BotImage = docker.build( - "${REGISTRY_URL}/${BOT_IMAGE_NAME}:${BOT_IMAGE_TAG}" + "${REGISTRY}/${BOT_IMAGE_NAME}:${BOT_IMAGE_TAG}" ) BotImage.push() }