From 8b31824ad6118ed505b43443816c1492e3d81c8c Mon Sep 17 00:00:00 2001 From: Johan Euphrosine Date: Fri, 16 May 2014 03:31:16 -0700 Subject: [PATCH] server/buildfile: correct daemon.Create comments s/and start it// Docker-DCO-1.1-Signed-off-by: Johan Euphrosine (github: proppy) --- server/buildfile.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/buildfile.go b/server/buildfile.go index faaac0d3d4..9387a87877 100644 --- a/server/buildfile.go +++ b/server/buildfile.go @@ -637,7 +637,7 @@ func (b *buildFile) CmdAdd(args string) error { } } - // Create the container and start it + // Create the container container, _, err := b.daemon.Create(b.config, "") if err != nil { return err @@ -666,7 +666,7 @@ func (b *buildFile) create() (*daemon.Container, error) { } b.config.Image = b.image - // Create the container and start it + // Create the container c, _, err := b.daemon.Create(b.config, "") if err != nil { return nil, err