From 7daebaf85eaa9758256490c3eea45e5353c890e5 Mon Sep 17 00:00:00 2001 From: Page Date: Fri, 6 Jun 2014 15:47:46 +0100 Subject: [PATCH] Fix check if we already have the image. --- src/application.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/application.coffee b/src/application.coffee index 27822a07..3e0b2f44 100644 --- a/src/application.coffee +++ b/src/application.coffee @@ -34,7 +34,7 @@ exports.kill = kill = (app) -> ) exports.start = start = (app) -> - docker.getImage(app).inspectAsync() + docker.getImage(app.imageId).inspectAsync() .catch (error) -> console.log("Pulling image:", app.imageId) deferred = Promise.defer()