2015-03-24 23:57:23 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/docker/docker/graph"
|
|
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
|
|
"github.com/docker/docker/pkg/parsers"
|
|
|
|
"github.com/docker/docker/registry"
|
|
|
|
"github.com/docker/docker/utils"
|
|
|
|
)
|
|
|
|
|
2015-03-25 13:34:41 -04:00
|
|
|
// CmdPull pulls an image or a repository from the registry.
|
|
|
|
//
|
|
|
|
// Usage: docker pull [OPTIONS] IMAGENAME[:TAG|@DIGEST]
|
2015-03-24 23:57:23 -04:00
|
|
|
func (cli *DockerCli) CmdPull(args ...string) error {
|
|
|
|
cmd := cli.Subcmd("pull", "NAME[:TAG|@DIGEST]", "Pull an image or a repository from the registry", true)
|
|
|
|
allTags := cmd.Bool([]string{"a", "-all-tags"}, false, "Download all tagged images in the repository")
|
|
|
|
cmd.Require(flag.Exact, 1)
|
|
|
|
|
2015-03-28 21:22:46 -04:00
|
|
|
cmd.ParseFlags(args, true)
|
2015-03-24 23:57:23 -04:00
|
|
|
|
|
|
|
var (
|
|
|
|
v = url.Values{}
|
|
|
|
remote = cmd.Arg(0)
|
|
|
|
newRemote = remote
|
|
|
|
)
|
|
|
|
taglessRemote, tag := parsers.ParseRepositoryTag(remote)
|
|
|
|
if tag == "" && !*allTags {
|
|
|
|
newRemote = utils.ImageReference(taglessRemote, graph.DEFAULTTAG)
|
|
|
|
}
|
|
|
|
if tag != "" && *allTags {
|
|
|
|
return fmt.Errorf("tag can't be used with --all-tags/-a")
|
|
|
|
}
|
|
|
|
|
|
|
|
v.Set("fromImage", newRemote)
|
|
|
|
|
|
|
|
// Resolve the Repository name from fqn to RepositoryInfo
|
|
|
|
repoInfo, err := registry.ParseRepositoryInfo(taglessRemote)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-01-12 14:56:01 -05:00
|
|
|
_, _, err = cli.clientRequestAttemptLogin("POST", "/images/create?"+v.Encode(), nil, cli.out, repoInfo.Index, "pull")
|
|
|
|
return err
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|