Skip to content

Commit

Permalink
Log the correct Stack Name when pulling image
Browse files Browse the repository at this point in the history
`stack` was not the full stack object, just it's properties
  • Loading branch information
hardillb committed Oct 30, 2024
1 parent 32a4e48 commit 119e6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 119e6e0

Please sign in to comment.