1
0
mirror of https://github.com/docker/cli.git synced 2026-01-16 20:22:36 +03:00

Fix "no such image" bug in docker run, introduced last commit. Ref #49,#50

Upstream-commit: 2feefb43758e2477b70044e73ed0d800453fe8de
Component: engine
This commit is contained in:
Charles Hooper
2013-03-12 22:13:21 +00:00
parent 016ee497a3
commit 4bba3014fc

View File

@@ -823,7 +823,10 @@ func (srv *Server) CmdRun(stdin io.ReadCloser, stdout io.Writer, args ...string)
parts := strings.SplitN(name, ":", 2)
img_name = parts[0]
//img_version = parts[1] // Only here for reference
}
} else {
img_name = name
}
// Choose a default command if needed
if len(cmdline) == 0 {
*fl_stdin = true