From 6cfcc2f81b1e655475cf3895caba4bb00a59bddc Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 6 Mar 2025 11:50:11 +0100 Subject: [PATCH] fix: add --init flag to Docker container for Cypress tests --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index dc5acc84e..63577dad5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -122,7 +122,7 @@ pipeline { sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY' sh "docker-compose ${env.COMPOSE_PARAMS} up -d" - image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ") { + image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") { sh 'sh test/cypress/cypressParallel.sh 2' } }