From b6a44ba8cc7b90701622ba6cca5e50ce1a26f16e Mon Sep 17 00:00:00 2001 From: mateuszwojcik Date: Tue, 3 Jun 2025 22:23:46 +0000 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5b5e8d8..e2cba55 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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}/${IMAGE_NAME}:${BUILD_ID}" + sh "docker push ${DOCKER_REGISTRY}/public/${IMAGE_NAME}:${BUILD_ID}" } } }