From 3a2084f5609d2db0d4724b5671f442cd86f66025 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Wed, 18 Sep 2024 12:28:21 +0700 Subject: [PATCH] Quiet --- src/executor/runnersub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/executor/runnersub.js b/src/executor/runnersub.js index b46b2f9..26a0512 100644 --- a/src/executor/runnersub.js +++ b/src/executor/runnersub.js @@ -481,7 +481,7 @@ export async function runConfigSubdomain(config, domaindata, subdomain, sshExec, await writeLog(d.split('\n').map(x => ` ${x}`).join('\n')); await writeLog("$> Applying compose services"); if (typeof config.services == 'string') { - await sshExec(`docker compose -f ${config.services} --progress plain up --build --detach`); + await sshExec(`docker compose -f ${config.services} --progress quiet up --build --detach`); } else { await sshExec(`docker compose up --build --detach`); }