From 1e9a4aa5b6706b76091382a26ea2918d38830cca Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 3 Feb 2025 21:24:27 +0100 Subject: [PATCH] fix(core): remove --remove-orphans flag from proxy startup command to prevent other proxy deletions (db) --- app/Actions/Proxy/StartProxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Actions/Proxy/StartProxy.php b/app/Actions/Proxy/StartProxy.php index 3139f02e2..1fff55861 100644 --- a/app/Actions/Proxy/StartProxy.php +++ b/app/Actions/Proxy/StartProxy.php @@ -57,7 +57,7 @@ class StartProxy " echo 'Successfully stopped and removed existing coolify-proxy.'", 'fi', "echo 'Starting coolify-proxy.'", - 'docker compose up -d --remove-orphans', + 'docker compose up -d', "echo 'Successfully started coolify-proxy.'", ]); $commands = $commands->merge(connectProxyToNetworks($server));