From 1e5c6099027e10dd6c02d9435ca6b8a17209d223 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Fri, 2 Aug 2024 16:20:35 +0100 Subject: [PATCH] Fix logPassthrough --- docker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker.js b/docker.js index b941a0c..346b2a6 100644 --- a/docker.js +++ b/docker.js @@ -86,7 +86,7 @@ const createContainer = async (project, domain) => { contOptions.Env.push(`FORGE_NR_SECRET=${credentialSecret}`) } - if (this._app.driver.options?.logPassthrough) { + if (this._app.config.driver.options?.logPassthrough) { contOptions.Env.push('FORGE_LOG_PASSTHROUGH=true') }