浏览代码

server/buildfile: correct daemon.Create comments

s/and start it//

Docker-DCO-1.1-Signed-off-by: Johan Euphrosine <proppy@google.com> (github: proppy)
Johan Euphrosine 11 年之前
父节点
当前提交
8b31824ad6
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      server/buildfile.go

+ 2 - 2
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