From cf06e5369a455c78f60cf79563e41ab589c12594 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Tue, 3 Jun 2025 00:13:00 -0600 Subject: [PATCH] fix: update docker system prune command to remove unnecessary 'all' flag - Modified the command in the cleanUpSystemPrune function to remove the '--all' flag, streamlining the Docker system prune operation. --- packages/server/src/utils/docker/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/utils/docker/utils.ts b/packages/server/src/utils/docker/utils.ts index 61f71381..13626fa3 100644 --- a/packages/server/src/utils/docker/utils.ts +++ b/packages/server/src/utils/docker/utils.ts @@ -212,7 +212,7 @@ export const cleanUpDockerBuilder = async (serverId?: string) => { }; export const cleanUpSystemPrune = async (serverId?: string) => { - const command = "docker system prune --all --force --volumes"; + const command = "docker system prune --force --volumes"; if (serverId) { await execAsyncRemote(serverId, command); } else {