summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthias Lucas Jaros <jarlucmat@mailbox.org>2025-11-10 10:39:05 +0100
committerGravatar Matthias Lucas Jaros <jarlucmat@mailbox.org>2025-11-10 10:39:05 +0100
commitaf7b1d8303322c75bf3c5f243835e5758460a8fa (patch)
treea45ad312802387e9bad8f1c430ec802cfae57fba
parent28c2c2bbbbbda03aed9a29224302283cc4e86ab3 (diff)
Renamed project to gitfish in jenkinsfile
-rw-r--r--Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 6c19845..7451e35 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -9,13 +9,13 @@ pipeline {
// 👇 Fill these for your setup
environment {
- GIT_URL = '/var/git/git-server.git'
+ GIT_URL = '/var/git/gitfish.git'
GIT_BRANCH = 'trunk'
GIT_CREDENTIALS = '' // Jenkins credentialsId (leave empty for public)
REGISTRY = 'docker.it-jaros.com' // e.g. ghcr.io/you or registry.example.com/namespace
- DOCKER_HUB = 'jarlucmat/git-server'
GROUP_ID = 'com.it-jaros.git'
IMAGE_NAME = "${REGISTRY}/${GROUP_ID}"
+ DOCKER_HUB = 'jarlucmat/gitfish'
PLATFORMS = 'linux/arm64/v8,linux/amd64'
ALPINE_VERSION = 'latest'
}