From 58c3d47a2f66a2b05b289a77c633864919ba1d75 Mon Sep 17 00:00:00 2001 From: alexm Date: Fri, 14 Mar 2025 11:23:15 +0100 Subject: [PATCH] fix: refs #6695 up with pull --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4b712d335..f34e3d6d8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -121,10 +121,10 @@ pipeline { def image = docker.build('lilium-dev', '-f docs/Dockerfile.dev docs') sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY' - sh "docker-compose ${env.COMPOSE_PARAMS} up -d" + sh "docker-compose ${env.COMPOSE_PARAMS} up -d --pull always" image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") { - sh 'sh test/cypress/cypressParallel.sh 1' + sh 'sh test/cypress/cypressParallel.sh 2' } } }