mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Unable to find image error should print to stderr
This commit is contained in:
parent
c4394decf8
commit
4ff649ce85
1 changed files with 1 additions and 1 deletions
|
@ -1423,7 +1423,7 @@ func (cli *DockerCli) CmdRun(args ...string) error {
|
|||
tag = DEFAULTTAG
|
||||
}
|
||||
|
||||
fmt.Printf("Unable to find image '%s' (tag: %s) locally\n", config.Image, tag)
|
||||
fmt.Fprintf(cli.err, "Unable to find image '%s' (tag: %s) locally\n", config.Image, tag)
|
||||
|
||||
v := url.Values{}
|
||||
repos, tag := utils.ParseRepositoryTag(config.Image)
|
||||
|
|
Loading…
Add table
Reference in a new issue