fix(Jenkinsfile): update Docker registry credentials handling in E2E stage #1551

Merged
alexm merged 2 commits from warmFix_use_withDockerRegistry into test 2025-03-05 10:16:04 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 27149b1750 - Show all commits

2
Jenkinsfile vendored
View File

@ -115,7 +115,7 @@ pipeline {
script {
sh 'rm junit/e2e-*.xml || true'
env.COMPOSE_TAG = PROTECTED_BRANCH.contains(env.CHANGE_TARGET) ? env.CHANGE_TARGET : 'dev'
withDockerRegistry([credentialsId: 'docker-registry']) {
withDockerRegistry([credentialsId: 'docker-registry', url: "https://${env.REGISTRY}" ]) {
sh "docker-compose ${env.COMPOSE_PARAMS} up -d"
}
def image = docker.build('lilium-dev', '-f docs/Dockerfile.dev docs')