jenkins-docker #17

Merged
jared merged 26 commits from jenkins-docker into development 2025-07-01 13:30:25 +02:00
Showing only changes of commit 2939869816 - Show all commits

12
Jenkinsfile vendored
View File

@@ -7,7 +7,6 @@ pipeline {
// environment {
// REGISTRY = 'https://gitea.innovation-hub-niedersachsen.de/'
// IMAGE = 'tatort-app'
// USER = 'jared'
// TOKEN = credentials('c661e484bb4f032f8a0a5b02cda6f3344ca584b5')
// }
@@ -44,7 +43,7 @@ pipeline {
steps {
echo 'Start Pushing'
script {
def tag = "innohub/tatort:${env.BUILD_ID}-dev"
def tag = "innohub/tatort-dev:${env.BUILD_ID}"
docker.withRegistry('https://gitea.innovation-hub-niedersachsen.de', 'JenkinsGitea') {
docker.build(tag, '-f Dockerfile.dev .').push()
}
@@ -53,15 +52,6 @@ pipeline {
}
}
// stage('Build') {
// when {
// branch 'development'
// }
// steps {
// sh 'npm run build'
// }
// }
post {
success {
echo 'Pipeline erfolgreich!'