gitreef

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 9d82c398602e1d1123df7c987b055b5ece5188be
parent 4e487eff0f3c4f3bbb21d6bbbd230039f056c238
Author: Matthias Jaros <jaros@mailbox.org>
Date:   Mon, 10 Nov 2025 10:39:05 +0100

Renamed project to gitfish in jenkinsfile

Diffstat:
MJenkinsfile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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' }