From 9eea73cefb628cb301658ce3599ab8476c2711d1 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Sun, 11 Feb 2024 14:35:07 +0100 Subject: [PATCH] Update Docker command in InstallLogDrain.php --- app/Actions/Server/InstallLogDrain.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Actions/Server/InstallLogDrain.php b/app/Actions/Server/InstallLogDrain.php index e43642e7a..2a1b03260 100644 --- a/app/Actions/Server/InstallLogDrain.php +++ b/app/Actions/Server/InstallLogDrain.php @@ -198,7 +198,7 @@ Files: } $restart_command = [ "echo 'Stopping old Fluent Bit'", - "cd $config_path && docker rm -f coolify-log-drain || true", + "cd $config_path && docker compose down --remove-orphans || true", "echo 'Starting Fluent Bit'", "cd $config_path && docker compose up -d --remove-orphans", ];