fix build
Gitea/homepage/pipeline/head This commit looks good

This commit is contained in:
Georgios Jason Efstathiou
2025-01-17 22:32:18 +01:00
parent 90bffcab1e
commit 610acd4ad4
Vendored
+2 -2
View File
@@ -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")
}
}