From adc83b2d70523be2957d4480c9a9e3da47025e25 Mon Sep 17 00:00:00 2001 From: Vincent Guillet Date: Thu, 20 Nov 2025 18:15:41 +0000 Subject: [PATCH] Update jenkinsfile --- jenkinsfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/jenkinsfile b/jenkinsfile index 209ed53..485c1ab 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -54,13 +54,9 @@ pipeline { stage('Deployment') { steps { sh ''' - "=== Nettoyage des anciens conteneurs du projet compose ===" CONTAINERS=$(docker ps -a --filter "label=com.docker.compose.project=${COMPOSE_PROJECT}" -q || true) if [ -n "$CONTAINERS" ]; then - echo "Suppression des conteneurs : $CONTAINERS" docker rm -f $CONTAINERS - else - "Aucun conteneur existant pour le projet ${COMPOSE_PROJECT}" fi echo "=== (Re)création de la stack MySQL + Spring + Angular ==="