diff --git a/Jenkinsfile b/Jenkinsfile index 8cfd5c4..401f965 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,7 @@ pipeline { agent any environment { - REGISTRY = "docker-registry.service.consul" + REGISTRY = "docker.internal.jason-e.dev:8443" IMAGE_NAME = "efstajas/homepage" } @@ -18,7 +18,7 @@ pipeline { stage('Docker Publish') { steps { script { - docker.withRegistry("http://$REGISTRY:4124") { + docker.withRegistry("https://$REGISTRY") { dockerImage.push("latest") } }