diff --git a/backend/src/services/ComposeService.ts b/backend/src/services/ComposeService.ts index 03b942f6..37b46015 100644 --- a/backend/src/services/ComposeService.ts +++ b/backend/src/services/ComposeService.ts @@ -55,6 +55,7 @@ export class ComposeService { } else { // Without WS, just wait for resolution let stderr = ''; + child.stdout.on('data', () => { }); // Drain stdout to prevent pipe buffer from blocking the process child.stderr.on('data', (data: Buffer) => { stderr += data.toString(); }); child.on('close', (code: number | null) => {