Merge pull request #3630 from AkihiroSuda/ctr-newdockerauthorized

ctr: use NewDockerAuthorizer instead of deprecated NewAuthorizer
This commit is contained in:
Michael Crosby
2019-09-09 12:47:10 -04:00
committed by GitHub

View File

@@ -103,7 +103,8 @@ func GetResolver(ctx gocontext.Context, clicontext *cli.Context) (remotes.Resolv
// Only one host
return username, secret, nil
}
options.Authorizer = docker.NewAuthorizer(options.Client, credentials)
authOpts := []docker.AuthorizerOpt{docker.WithAuthClient(options.Client), docker.WithAuthCreds(credentials)}
options.Authorizer = docker.NewDockerAuthorizer(authOpts...)
return docker.NewResolver(options), nil
}