This commit is contained in:
2025-10-07 21:02:53 +01:00
parent bd8d5677b4
commit 32315e179e

4
Jenkinsfile vendored
View File

@@ -2,7 +2,7 @@ pipeline {
agent any
environment {
DOCKER_REGISTRY = 'git.homeware.pt'
DOCKER_REGISTRY = 'git.homeware.pt/marco'
DOCKER_TAG = "${env.BUILD_ID}"
REACT_DIR = 'geradoresfe'
@@ -68,7 +68,7 @@ pipeline {
stage('Push para Docker Registry') {
steps {
script {
docker.withRegistry("https://${DOCKER_REGISTRY}", DOCKER_CREDENTIALS_ID) {
docker.withRegistry("https://${DOCKER_REGISTRY}", GIT_CREDENTIALS_ID) {
docker.image("${WS_IMAGE}").push()
docker.image("${REACT_IMAGE}").push()
}