From 0adc48209d54d526ac8db83e475673e5f164e279 Mon Sep 17 00:00:00 2001 From: korotkov Date: Wed, 1 Apr 2026 14:09:47 +0500 Subject: [PATCH] q --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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() }