mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
38 lines
758 B
Go
38 lines
758 B
Go
|
package lib
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"net/url"
|
||
|
|
||
|
"github.com/docker/docker/api/types"
|
||
|
)
|
||
|
|
||
|
// ImageRemoveOptions holds parameters to remove images.
|
||
|
type ImageRemoveOptions struct {
|
||
|
ImageID string
|
||
|
Force bool
|
||
|
PruneChildren bool
|
||
|
}
|
||
|
|
||
|
// ImageRemove removes an image from the docker host.
|
||
|
func (cli *Client) ImageRemove(options ImageRemoveOptions) ([]types.ImageDelete, error) {
|
||
|
var query url.Values
|
||
|
|
||
|
if options.Force {
|
||
|
query.Set("force", "1")
|
||
|
}
|
||
|
if !options.PruneChildren {
|
||
|
query.Set("noprune", "1")
|
||
|
}
|
||
|
|
||
|
resp, err := cli.DELETE("/images/"+options.ImageID, query, nil)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
defer ensureReaderClosed(resp)
|
||
|
|
||
|
var dels []types.ImageDelete
|
||
|
err = json.NewDecoder(resp.body).Decode(&dels)
|
||
|
return dels, err
|
||
|
}
|