From e2e26a8c25dc0e9e5fe7f58a8f4d3b7a677009f9 Mon Sep 17 00:00:00 2001 From: Araozu Date: Sun, 6 Oct 2024 21:17:34 -0500 Subject: [PATCH] fix: jenkinsfile, again --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6c87a85..4322d81 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,8 +22,8 @@ pipeline { stage('Profit') { steps { dir('docker') { - sh 'docker compose stop || true' - sh 'docker compose up --force-recreate -d' + sh 'docker-compose stop || true' + sh 'docker-compose up -d --build' } } }