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.
This commit is contained in:
Mauricio Siu
2025-06-03 00:13:00 -06:00
parent 973de2a610
commit cf06e5369a

View File

@@ -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 {