Merge pull request #1198 from dotcloud/fix_pull_tag

Fixed tag option for "docker pull" (the option was ignored)
This commit is contained in:
Victor Vieux 2013-07-13 08:14:47 -07:00
Родитель 933b9d44e1 cd0fef633c
Коммит 2051ebc0eb
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -821,7 +821,9 @@ func (cli *DockerCli) CmdPull(args ...string) error {
}
remote, parsedTag := utils.ParseRepositoryTag(cmd.Arg(0))
if *tag == "" {
*tag = parsedTag
}
v := url.Values{}
v.Set("fromImage", remote)