From 4d60e26ff8c955b0f1defc1f702d2746e42b8300 Mon Sep 17 00:00:00 2001 From: Artur Date: Fri, 4 Oct 2024 16:59:17 +0200 Subject: [PATCH] --remove-orphans --- deploy-this/start-proxy.jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy-this/start-proxy.jenkinsfile b/deploy-this/start-proxy.jenkinsfile index 2d86106..fb9522f 100755 --- a/deploy-this/start-proxy.jenkinsfile +++ b/deploy-this/start-proxy.jenkinsfile @@ -5,7 +5,7 @@ pipeline { stage('start proxy-nginx') { steps { script{ - def nxinx_build ="docker compose --file deploy-this/deploy-dc.yml up --detach " + def nxinx_build ="docker compose --file deploy-this/deploy-dc.yml up --detach --remove-orphans " sh(nxinx_build); sh "cp ./nginx-config/** /apps-data" }