build(deps): bump github.com/docker/docker
Bumps [github.com/docker/docker](https://github.com/docker/docker) from 23.0.4+incompatible to 23.0.5+incompatible. - [Release notes](https://github.com/docker/docker/releases) - [Commits](https://github.com/docker/docker/compare/v23.0.4...v23.0.5) --- updated-dependencies: - dependency-name: github.com/docker/docker dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
		
							parent
							
								
									b7b3a19768
								
							
						
					
					
						commit
						5fefb54d2b
					
				
							
								
								
									
										2
									
								
								go.mod
								
								
								
								
							
							
						
						
									
										2
									
								
								go.mod
								
								
								
								
							|  | @ -24,7 +24,7 @@ require ( | |||
| 	github.com/coreos/stream-metadata-go v0.4.1 | ||||
| 	github.com/cyphar/filepath-securejoin v0.2.3 | ||||
| 	github.com/digitalocean/go-qemu v0.0.0-20210326154740-ac9e0b687001 | ||||
| 	github.com/docker/docker v23.0.4+incompatible | ||||
| 	github.com/docker/docker v23.0.5+incompatible | ||||
| 	github.com/docker/go-connections v0.4.1-0.20210727194412-58542c764a11 | ||||
| 	github.com/docker/go-plugins-helpers v0.0.0-20211224144127-6eecb7beb651 | ||||
| 	github.com/docker/go-units v0.5.0 | ||||
|  |  | |||
							
								
								
									
										4
									
								
								go.sum
								
								
								
								
							
							
						
						
									
										4
									
								
								go.sum
								
								
								
								
							|  | @ -317,8 +317,8 @@ github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4Kfc | |||
| github.com/docker/distribution v2.8.1+incompatible h1:Q50tZOPR6T/hjNsyc9g8/syEs6bk8XXApsHjKukMl68= | ||||
| github.com/docker/distribution v2.8.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= | ||||
| github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= | ||||
| github.com/docker/docker v23.0.4+incompatible h1:Kd3Bh9V/rO+XpTP/BLqM+gx8z7+Yb0AA2Ibj+nNo4ek= | ||||
| github.com/docker/docker v23.0.4+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= | ||||
| github.com/docker/docker v23.0.5+incompatible h1:DaxtlTJjFSnLOXVNUBU1+6kXGz2lpDoEAH6QoxaSg8k= | ||||
| github.com/docker/docker v23.0.5+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= | ||||
| github.com/docker/docker-credential-helpers v0.6.3/go.mod h1:WRaJzqw3CTB9bk10avuGsjVBZsD05qeibJ1/TYlvc0Y= | ||||
| github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A= | ||||
| github.com/docker/docker-credential-helpers v0.7.0/go.mod h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0= | ||||
|  |  | |||
|  | @ -6,9 +6,10 @@ https://docs.docker.com/engine/api/ | |||
| 
 | ||||
| # Usage | ||||
| 
 | ||||
| You use the library by creating a client object and calling methods on it. The | ||||
| client can be created either from environment variables with NewClientWithOpts(client.FromEnv), | ||||
| or configured manually with NewClient(). | ||||
| You use the library by constructing a client object using [NewClientWithOpts] | ||||
| and calling methods on it. The client can be configured from environment | ||||
| variables by passing the [FromEnv] option, or configured manually by passing any | ||||
| of the other available [Opts]. | ||||
| 
 | ||||
| For example, to list running containers (the equivalent of "docker ps"): | ||||
| 
 | ||||
|  |  | |||
|  | @ -9,7 +9,11 @@ import "net/http" | |||
| // It won't send any version information if the version number is empty. It is
 | ||||
| // highly recommended that you set a version or your client may break if the
 | ||||
| // server is upgraded.
 | ||||
| // Deprecated: use NewClientWithOpts
 | ||||
| //
 | ||||
| // Deprecated: use [NewClientWithOpts] passing the [WithHost], [WithVersion],
 | ||||
| // [WithHTTPClient] and [WithHTTPHeaders] options. We recommend enabling API
 | ||||
| // version negotiation by passing the [WithAPIVersionNegotiation] option instead
 | ||||
| // of WithVersion.
 | ||||
| func NewClient(host string, version string, client *http.Client, httpHeaders map[string]string) (*Client, error) { | ||||
| 	return NewClientWithOpts(WithHost(host), WithVersion(version), WithHTTPClient(client), WithHTTPHeaders(httpHeaders)) | ||||
| } | ||||
|  | @ -17,7 +21,7 @@ func NewClient(host string, version string, client *http.Client, httpHeaders map | |||
| // NewEnvClient initializes a new API client based on environment variables.
 | ||||
| // See FromEnv for a list of support environment variables.
 | ||||
| //
 | ||||
| // Deprecated: use NewClientWithOpts(FromEnv)
 | ||||
| // Deprecated: use [NewClientWithOpts] passing the [FromEnv] option.
 | ||||
| func NewEnvClient() (*Client, error) { | ||||
| 	return NewClientWithOpts(FromEnv) | ||||
| } | ||||
|  |  | |||
|  | @ -384,7 +384,7 @@ github.com/docker/distribution/reference | |||
| github.com/docker/distribution/registry/api/errcode | ||||
| github.com/docker/distribution/registry/api/v2 | ||||
| github.com/docker/distribution/registry/client/auth/challenge | ||||
| # github.com/docker/docker v23.0.4+incompatible | ||||
| # github.com/docker/docker v23.0.5+incompatible | ||||
| ## explicit | ||||
| github.com/docker/docker/api | ||||
| github.com/docker/docker/api/types | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue