From 7ce36a50e86c165336f6d8f2290e93ed8b8e0d9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D1=84=D1=8B=D1=80=D0=B0=D1=82=20=D1=91=D0=B7=D0=B4=D1=8D?= =?UTF-8?q?=D0=BD?= <31664778+fir4tozden@users.noreply.github.com> Date: Sun, 30 Nov 2025 21:35:05 +0300 Subject: [PATCH] chore: edited dockerSafeExec() description --- packages/server/src/utils/docker/utils.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/server/src/utils/docker/utils.ts b/packages/server/src/utils/docker/utils.ts index f4042111a..9d2464e06 100644 --- a/packages/server/src/utils/docker/utils.ts +++ b/packages/server/src/utils/docker/utils.ts @@ -145,8 +145,8 @@ export const getContainerByName = (name: string): Promise => { }); }; -// Commands passed through this method are held during Docker's build or pull process. (https://github.com/dokploy/dokploy/pull/3064) -export const dockerSafeExec = (command: string) => `CHECK_INTERVAL=10 +/** Docker commands passed through this method are held during Docker's build or pull process. (https://github.com/dokploy/dokploy/pull/3064) */ +export const dockerSafeExec = (exec: string) => `CHECK_INTERVAL=10 echo "Starting Docker cleanup..." @@ -162,7 +162,7 @@ while true; do fi done -${command} +${exec} echo "Docker cleanup completed."`;