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`); }