瀏覽代碼

Merge pull request #2870 from dotcloud/fix-links-parsing

fix -link parsing
Victor Vieux 11 年之前
父節點
當前提交
06d5e25224
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      commands.go

+ 4 - 3
commands.go

@@ -1650,11 +1650,12 @@ func (opts AttachOpts) Set(val string) error {
 // LinkOpts stores arguments to `docker run -link`
 // LinkOpts stores arguments to `docker run -link`
 type LinkOpts []string
 type LinkOpts []string
 
 
-func (link LinkOpts) String() string { return fmt.Sprintf("%v", []string(link)) }
-func (link LinkOpts) Set(val string) error {
+func (link *LinkOpts) String() string { return fmt.Sprintf("%v", []string(*link)) }
+func (link *LinkOpts) Set(val string) error {
 	if _, err := parseLink(val); err != nil {
 	if _, err := parseLink(val); err != nil {
 		return err
 		return err
 	}
 	}
+	*link = append(*link, val)
 	return nil
 	return nil
 }
 }
 
 
@@ -1760,7 +1761,7 @@ func parseRun(cmd *flag.FlagSet, args []string, capabilities *Capabilities) (*Co
 
 
 	cmd.Var(flAttach, "a", "Attach to stdin, stdout or stderr.")
 	cmd.Var(flAttach, "a", "Attach to stdin, stdout or stderr.")
 	cmd.Var(flVolumes, "v", "Bind mount a volume (e.g. from the host: -v /host:/container, from docker: -v /container)")
 	cmd.Var(flVolumes, "v", "Bind mount a volume (e.g. from the host: -v /host:/container, from docker: -v /container)")
-	cmd.Var(flLinks, "link", "Add link to another container (name:alias)")
+	cmd.Var(&flLinks, "link", "Add link to another container (name:alias)")
 
 
 	cmd.Var(&flPublish, "p", fmt.Sprintf("Publish a container's port to the host (format: %s) (use 'docker port' to see the actual mapping)", PortSpecTemplateFormat))
 	cmd.Var(&flPublish, "p", fmt.Sprintf("Publish a container's port to the host (format: %s) (use 'docker port' to see the actual mapping)", PortSpecTemplateFormat))
 	cmd.Var(&flExpose, "expose", "Expose a port from the container without publishing it to your host")
 	cmd.Var(&flExpose, "expose", "Expose a port from the container without publishing it to your host")