From b2fcf6501ec93c9c2c91a743cf0861417b0fdcf9 Mon Sep 17 00:00:00 2001 From: mateuszwojcik Date: Tue, 3 Jun 2025 22:25:22 +0000 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e2cba55..940f3f7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ pipeline { environment { DOCKER_REGISTRY = 'gitea.postio.pl' - IMAGE_NAME = 'oxdr-swagger-ui' + IMAGE_NAME = 'public/oxdr-swagger-ui' } parameters { @@ -69,7 +69,7 @@ pipeline { echo "Logging into Docker registry..." sh "echo $DOCKER_PASS | docker login ${DOCKER_REGISTRY} -u $DOCKER_USER --password-stdin" echo "Pushing Docker image..." - sh "docker push ${DOCKER_REGISTRY}/public/${IMAGE_NAME}:${BUILD_ID}" + sh "docker push ${DOCKER_REGISTRY}/${IMAGE_NAME}:${BUILD_ID}" } } }