ci043-add-jenkins-ci #13

Merged
jared merged 36 commits from ci043-add-jenkins-ci into development 2025-06-25 16:40:38 +02:00
Showing only changes of commit 38f9f61e8a - Show all commits

12
Jenkinsfile vendored
View File

@@ -6,6 +6,13 @@ pipeline {
nodejs 'NodeJS-24.2.0' nodejs 'NodeJS-24.2.0'
} }
environment {
REGISTRY = 'https://gitea.innovation-hub-niedersachsen.de//innohub/-'
IMAGE = 'tatort-app'
USER = 'jared'
TOKEN = credentials('74a7c9bb-c80f-4699-ab0e-f98fb2f9a8e6')
}
stages { stages {
// stage('Install Dependencies') { // stage('Install Dependencies') {
// steps { // steps {
@@ -37,7 +44,10 @@ pipeline {
} }
} }
stage('Push image in gitea registry') {
docker push ${REGISTRY}/${USER}/${IMAGE}:latest
docker logout ${REGISTRY}
}
} }
post { post {