mirror of https://github.com/docker/docs.git
Merge pull request #20521 from estesp/vendor-engine-api-fix
Update engine-api vendoring to latest commit
This commit is contained in:
commit
64785ff146
|
@ -24,7 +24,7 @@ clone git golang.org/x/net 47990a1ba55743e6ef1affd3a14e5bac8553615d https://gith
|
||||||
clone git golang.org/x/sys eb2c74142fd19a79b3f237334c7384d5167b1b46 https://github.com/golang/sys.git
|
clone git golang.org/x/sys eb2c74142fd19a79b3f237334c7384d5167b1b46 https://github.com/golang/sys.git
|
||||||
clone git github.com/docker/go-units 651fc226e7441360384da338d0fd37f2440ffbe3
|
clone git github.com/docker/go-units 651fc226e7441360384da338d0fd37f2440ffbe3
|
||||||
clone git github.com/docker/go-connections v0.2.0
|
clone git github.com/docker/go-connections v0.2.0
|
||||||
clone git github.com/docker/engine-api afb1638f70a4b839be80ea37a5073faa18a30194
|
clone git github.com/docker/engine-api 575694d38967b53e06cafe8b722c72892dd64db0
|
||||||
clone git github.com/RackSec/srslog 6eb773f331e46fbba8eecb8e794e635e75fc04de
|
clone git github.com/RackSec/srslog 6eb773f331e46fbba8eecb8e794e635e75fc04de
|
||||||
clone git github.com/imdario/mergo 0.2.1
|
clone git github.com/imdario/mergo 0.2.1
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,8 @@ func (cli *Client) ImageLoad(ctx context.Context, input io.Reader, quiet bool) (
|
||||||
if quiet {
|
if quiet {
|
||||||
v.Set("quiet", "1")
|
v.Set("quiet", "1")
|
||||||
}
|
}
|
||||||
resp, err := cli.postRaw(ctx, "/images/load", v, input, nil)
|
headers := map[string][]string{"Content-Type": {"application/x-tar"}}
|
||||||
|
resp, err := cli.postRaw(ctx, "/images/load", v, input, headers)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return types.ImageLoadResponse{}, err
|
return types.ImageLoadResponse{}, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -148,6 +148,7 @@ type Container struct {
|
||||||
NetworkMode string `json:",omitempty"`
|
NetworkMode string `json:",omitempty"`
|
||||||
}
|
}
|
||||||
NetworkSettings *SummaryNetworkSettings
|
NetworkSettings *SummaryNetworkSettings
|
||||||
|
Mounts []MountPoint
|
||||||
}
|
}
|
||||||
|
|
||||||
// CopyConfig contains request body of Remote API:
|
// CopyConfig contains request body of Remote API:
|
||||||
|
|
Loading…
Reference in New Issue