mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-28 11:17:59 +00:00
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com> Vendors in fsouza/docker-client, docker/docker and a few more related. Of particular note, changes to the TweakCapabilities() function from docker/docker along with the parse.IDMappingOptions() function from Buildah. Please pay particular attention to the related changes in the call from libpod to those functions during the review. Passes baseline tests.
29 lines
828 B
Go
29 lines
828 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
)
|
|
|
|
// ImageLoad loads an image in the docker host from the client host.
|
|
// It's up to the caller to close the io.ReadCloser in the
|
|
// ImageLoadResponse returned by this function.
|
|
func (cli *Client) ImageLoad(ctx context.Context, input io.Reader, quiet bool) (types.ImageLoadResponse, error) {
|
|
v := url.Values{}
|
|
v.Set("quiet", "0")
|
|
if quiet {
|
|
v.Set("quiet", "1")
|
|
}
|
|
headers := map[string][]string{"Content-Type": {"application/x-tar"}}
|
|
resp, err := cli.postRaw(ctx, "/images/load", v, input, headers)
|
|
if err != nil {
|
|
return types.ImageLoadResponse{}, err
|
|
}
|
|
return types.ImageLoadResponse{
|
|
Body: resp.body,
|
|
JSON: resp.header.Get("Content-Type") == "application/json",
|
|
}, nil
|
|
}
|