mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d9a62c5f2b
Signed-off-by: David Calavera <david.calavera@gmail.com>
20 lines
424 B
Go
20 lines
424 B
Go
package lib
|
|
|
|
import (
|
|
"io"
|
|
"net/url"
|
|
)
|
|
|
|
// ImageSave retrieves one or more images from the docker host as a io.ReadCloser.
|
|
// It's up to the caller to store the images and close the stream.
|
|
func (cli *Client) ImageSave(imageIDs []string) (io.ReadCloser, error) {
|
|
query := url.Values{
|
|
"names": imageIDs,
|
|
}
|
|
|
|
resp, err := cli.get("/images/get", query, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return resp.body, nil
|
|
}
|