From 119e6e02676b00a297f8adc037bb87ee92b33a56 Mon Sep 17 00:00:00 2001 From: Ben Hardill Date: Wed, 30 Oct 2024 10:03:29 +0000 Subject: [PATCH] Log the correct Stack Name when pulling image `stack` was not the full stack object, just it's properties --- docker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker.js b/docker.js index 208462e..5cd69f5 100644 --- a/docker.js +++ b/docker.js @@ -139,7 +139,7 @@ const createContainer = async (project, domain) => { } if (!containerFound) { - this._app.log.info(`Container for stack ${stack.name} not found, pulling ${stack.container}`) + this._app.log.info(`Container for stack ${project.ProjectStack.name} not found, pulling ${stack.container}`) // https://github.com/apocas/dockerode/issues/703 try { await new Promise((resolve, reject) => {