Merge pull request #3630 from AkihiroSuda/ctr-newdockerauthorized
ctr: use NewDockerAuthorizer instead of deprecated NewAuthorizer
This commit is contained in:
commit
51671ef734
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user