mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #2869 from dotcloud/fix-docker-pull-run
fix docker run on an unknown image
This commit is contained in:
commit
18d08d0d42
1 changed files with 1 additions and 2 deletions
|
@ -2009,8 +2009,7 @@ func (cli *DockerCli) CmdRun(args ...string) error {
|
|||
if body, _, err = cli.call("POST", "/containers/create?"+containerValues.Encode(), config); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
if err != nil {
|
||||
} else if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue