diff --git a/components/engine/commands.go b/components/engine/commands.go index 01256b1da8..6d78c032f3 100644 --- a/components/engine/commands.go +++ b/components/engine/commands.go @@ -1426,7 +1426,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)