12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package image
- import (
- "golang.org/x/net/context"
- "github.com/docker/docker/cli"
- "github.com/docker/docker/cli/command"
- "github.com/docker/docker/pkg/jsonmessage"
- "github.com/docker/docker/reference"
- "github.com/docker/docker/registry"
- "github.com/spf13/cobra"
- )
- // NewPushCommand creates a new `docker push` command
- func NewPushCommand(dockerCli *command.DockerCli) *cobra.Command {
- cmd := &cobra.Command{
- Use: "push [OPTIONS] NAME[:TAG]",
- Short: "Push an image or a repository to a registry",
- Args: cli.ExactArgs(1),
- RunE: func(cmd *cobra.Command, args []string) error {
- return runPush(dockerCli, args[0])
- },
- }
- flags := cmd.Flags()
- command.AddTrustedFlags(flags, true)
- return cmd
- }
- func runPush(dockerCli *command.DockerCli, remote string) error {
- ref, err := reference.ParseNamed(remote)
- if err != nil {
- return err
- }
- // Resolve the Repository name from fqn to RepositoryInfo
- repoInfo, err := registry.ParseRepositoryInfo(ref)
- if err != nil {
- return err
- }
- ctx := context.Background()
- // Resolve the Auth config relevant for this server
- authConfig := command.ResolveAuthConfig(ctx, dockerCli, repoInfo.Index)
- requestPrivilege := command.RegistryAuthenticationPrivilegedFunc(dockerCli, repoInfo.Index, "push")
- if command.IsTrusted() {
- return trustedPush(ctx, dockerCli, repoInfo, ref, authConfig, requestPrivilege)
- }
- responseBody, err := imagePushPrivileged(ctx, dockerCli, authConfig, ref.String(), requestPrivilege)
- if err != nil {
- return err
- }
- defer responseBody.Close()
- return jsonmessage.DisplayJSONMessagesToStream(responseBody, dockerCli.Out(), nil)
- }
|