commit af023ee26fefbbd5aada81ae81c031b7d4e37754 parent 9d82c398602e1d1123df7c987b055b5ece5188be Author: Matthias Jaros <jaros@mailbox.org> Date: Mon, 10 Nov 2025 11:01:01 +0100 Reorganized environment variables Diffstat:
| M | Jenkinsfile | | | 12 | ++++++------ |
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile @@ -9,13 +9,13 @@ pipeline { // 👇 Fill these for your setup environment { - GIT_URL = '/var/git/gitfish.git' + PROJECT = 'gitfish' + GIT_URL = "/var/git/${PROJECT}.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 - GROUP_ID = 'com.it-jaros.git' - IMAGE_NAME = "${REGISTRY}/${GROUP_ID}" - DOCKER_HUB = 'jarlucmat/gitfish' + GIT_CREDENTIALS = '' + REGISTRY = 'docker.it-jaros.com' + IMAGE_NAME = "${REGISTRY}/${PROJECT}" + DOCKER_HUB = "jarlucmat/${PROJECT}" PLATFORMS = 'linux/arm64/v8,linux/amd64' ALPINE_VERSION = 'latest' }