2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
import (
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2016-09-06 18:46:37 +00:00
|
|
|
"io"
|
|
|
|
"net/url"
|
2017-09-13 19:49:04 +00:00
|
|
|
"strings"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
2023-08-30 16:31:46 +00:00
|
|
|
"github.com/distribution/reference"
|
2016-09-06 18:46:37 +00:00
|
|
|
"github.com/docker/docker/api/types"
|
2023-07-07 11:40:24 +00:00
|
|
|
"github.com/docker/docker/api/types/image"
|
2016-09-06 18:46:37 +00:00
|
|
|
)
|
|
|
|
|
2021-02-16 15:07:44 +00:00
|
|
|
// ImageImport creates a new image based on the source options.
|
2016-09-06 18:46:37 +00:00
|
|
|
// It returns the JSON content in the response body.
|
2023-07-07 11:40:24 +00:00
|
|
|
func (cli *Client) ImageImport(ctx context.Context, source types.ImageImportSource, ref string, options image.ImportOptions) (io.ReadCloser, error) {
|
2016-09-06 18:46:37 +00:00
|
|
|
if ref != "" {
|
2019-11-27 14:44:49 +00:00
|
|
|
// Check if the given image name can be resolved
|
2017-01-26 00:54:18 +00:00
|
|
|
if _, err := reference.ParseNormalizedNamed(ref); err != nil {
|
2016-09-06 18:46:37 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
query := url.Values{}
|
|
|
|
query.Set("fromSrc", source.SourceName)
|
|
|
|
query.Set("repo", ref)
|
|
|
|
query.Set("tag", options.Tag)
|
|
|
|
query.Set("message", options.Message)
|
2017-09-13 19:49:04 +00:00
|
|
|
if options.Platform != "" {
|
|
|
|
query.Set("platform", strings.ToLower(options.Platform))
|
|
|
|
}
|
2016-09-06 18:46:37 +00:00
|
|
|
for _, change := range options.Changes {
|
|
|
|
query.Add("changes", change)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := cli.postRaw(ctx, "/images/create", query, source.Source, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return resp.body, nil
|
|
|
|
}
|