From b6de55c4d9e463666f1c25951c2cd4678c948855 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sun, 30 Nov 2025 18:24:45 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages/server/src/utils/docker/utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/server/src/utils/docker/utils.ts b/packages/server/src/utils/docker/utils.ts index e68080e1a..42a64ed69 100644 --- a/packages/server/src/utils/docker/utils.ts +++ b/packages/server/src/utils/docker/utils.ts @@ -146,7 +146,7 @@ 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 createDockerSafeExec = (command: string) => (`CHECK_INTERVAL=10 +export const createDockerSafeExec = (command: string) => `CHECK_INTERVAL=10 echo "Starting Docker cleanup..." @@ -164,7 +164,7 @@ done ${command} -echo "Docker cleanup completed."`) +echo "Docker cleanup completed."`; export const cleanUpUnusedImages = async (serverId?: string) => { try {