From f3f72b2704437e15c0af7542cde07de2c29ffaae Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Wed, 23 Oct 2024 19:07:18 +0200 Subject: [PATCH] =?UTF-8?q?refs=20#1028=20-=20Contenedor=20de=20oggui=20-?= =?UTF-8?q?=20Se=20a=C3=B1ade=20el=20tag=20a=20latest=20cuando=20se=20real?= =?UTF-8?q?iza=20el=20push=20al=20repo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ogWebconsole/Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ogWebconsole/Jenkinsfile b/ogWebconsole/Jenkinsfile index 308ed3c..0ba4d9e 100644 --- a/ogWebconsole/Jenkinsfile +++ b/ogWebconsole/Jenkinsfile @@ -30,6 +30,7 @@ pipeline { docker.withRegistry('https://index.docker.io/v1/', 'docker-hub-credentials' ) { dir('ogWebconsole') { docker.image("${DOCKER_REPO}/${DOCKER_IMAGE_NAME}:${BRANCH_NAME}-${DOCKER_TAG}").push() + docker.image("${DOCKER_REPO}/${DOCKER_IMAGE_NAME}:${BRANCH_NAME}-${DOCKER_TAG}").push("${DOCKER_REPO}/${DOCKER_IMAGE_NAME}:${BRANCH_NAME}-latest") } } }