mirror of https://github.com/containers/podman.git
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
package images
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/containers/podman/v4/pkg/api/handlers/types"
|
|
"github.com/containers/podman/v4/pkg/bindings"
|
|
"github.com/containers/podman/v4/pkg/domain/entities"
|
|
"github.com/containers/podman/v4/pkg/errorhandling"
|
|
)
|
|
|
|
// Remove removes one or more images from the local storage. Use optional force option to remove an
|
|
// image, even if it's used by containers.
|
|
func Remove(ctx context.Context, images []string, options *RemoveOptions) (*entities.ImageRemoveReport, []error) {
|
|
if options == nil {
|
|
options = new(RemoveOptions)
|
|
}
|
|
var report types.LibpodImagesRemoveReport
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return nil, []error{err}
|
|
}
|
|
|
|
params, err := options.ToParams()
|
|
if err != nil {
|
|
return nil, nil
|
|
}
|
|
for _, image := range images {
|
|
params.Add("images", image)
|
|
}
|
|
response, err := conn.DoRequest(ctx, nil, http.MethodDelete, "/images/remove", params, nil)
|
|
if err != nil {
|
|
return nil, []error{err}
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
if err := response.Process(&report); err != nil {
|
|
return nil, []error{err}
|
|
}
|
|
|
|
return &report.ImageRemoveReport, errorhandling.StringsToErrors(report.Errors)
|
|
}
|