From 393bbcae7928aa8f478c7ed375b5dcbe9daaaaf6 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Fri, 17 Nov 2023 01:02:20 +0800 Subject: [PATCH] Fix #52 --- backend/stack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/stack.ts b/backend/stack.ts index fd22e30d..1a2366b4 100644 --- a/backend/stack.ts +++ b/backend/stack.ts @@ -149,7 +149,7 @@ export class Stack { async delete(socket?: DockgeSocket) : Promise { const terminalName = getComposeTerminalName(this.name); - let exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "down", "--remove-orphans", "all" ], this.path); + let exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "down", "--remove-orphans" ], this.path); if (exitCode !== 0) { throw new Error("Failed to delete, please check the terminal output for more information."); }