mirror of https://github.com/docker/docs.git
18 lines
395 B
Go
18 lines
395 B
Go
package lib
|
|
|
|
import (
|
|
"io"
|
|
"net/url"
|
|
)
|
|
|
|
// ImageLoad loads an image in the docker host from the client host.
|
|
// It's up to the caller to close the io.ReadCloser returned by
|
|
// this function.
|
|
func (cli *Client) ImageLoad(input io.Reader) (io.ReadCloser, error) {
|
|
resp, err := cli.postRaw("/images/load", url.Values{}, input, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return resp.body, nil
|
|
}
|