Bump docker/docker to 079ed017b61eb819b8184b90013ce89465d3aaba

- Add API support for SCTP port mapping
- Add canonical import path
- Add `REMOVE` and `ORPHANED` to TaskState
- Fix TLS from environment variables in client
- Introduce NewClientWithOpts func to build custom client easily
- Wrap response errors for container copy methodsto fix error detection using
  `IsErrNotFound` and `IsErrNotImplemented` for `ContainerStatPath`,
  `CopyFromContainer`, and `CopyToContainer` methods.
- Produce errors when empty ids are passed into inspect calls

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2018-02-20 17:17:49 +01:00
parent 7d41d18b43
commit aaa7a7cb95
308 changed files with 539 additions and 419 deletions

View File

@ -1,4 +1,4 @@
package errdefs
package errdefs // import "github.com/docker/docker/errdefs"
// ErrNotFound signals that the requested object doesn't exist
type ErrNotFound interface {

View File

@ -5,4 +5,4 @@
// To check if a particular error implements one of these interfaces, there are helper
// functions provided (e.g. `Is<SomeError>`) which can be used rather than asserting the interfaces directly.
// If you must assert on these interfaces, be sure to check the causal chain (`err.Cause()`).
package errdefs
package errdefs // import "github.com/docker/docker/errdefs"

View File

@ -1,4 +1,4 @@
package errdefs
package errdefs // import "github.com/docker/docker/errdefs"
import "context"

View File

@ -1,4 +1,4 @@
package errdefs
package errdefs // import "github.com/docker/docker/errdefs"
type causer interface {
Cause() error