150 lines
3.9 KiB
Go
150 lines
3.9 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/containers/libpod/cmd/podman/cliconfig"
|
|
"github.com/containers/libpod/pkg/adapter"
|
|
"github.com/containers/storage"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
rmiCommand cliconfig.RmiValues
|
|
rmiDescription = "Removes one or more previously pulled or locally created images."
|
|
_rmiCommand = cobra.Command{
|
|
Use: "rmi [flags] IMAGE [IMAGE...]",
|
|
Short: "Removes one or more images from local storage",
|
|
Long: rmiDescription,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
rmiCommand.InputArgs = args
|
|
rmiCommand.GlobalFlags = MainGlobalOpts
|
|
rmiCommand.Remote = remoteclient
|
|
return rmiCmd(&rmiCommand)
|
|
},
|
|
Example: `podman rmi imageID
|
|
podman rmi --force alpine
|
|
podman rmi c4dfb1609ee2 93fd78260bd1 c0ed59d05ff7`,
|
|
}
|
|
)
|
|
|
|
func rmiInit(command *cliconfig.RmiValues) {
|
|
command.SetHelpTemplate(HelpTemplate())
|
|
command.SetUsageTemplate(UsageTemplate())
|
|
flags := command.Flags()
|
|
flags.BoolVarP(&command.All, "all", "a", false, "Remove all images")
|
|
flags.BoolVarP(&command.Force, "force", "f", false, "Force Removal of the image")
|
|
}
|
|
|
|
func init() {
|
|
rmiCommand.Command = &_rmiCommand
|
|
rmiInit(&rmiCommand)
|
|
}
|
|
|
|
func rmiCmd(c *cliconfig.RmiValues) error {
|
|
var (
|
|
lastError error
|
|
failureCnt int
|
|
)
|
|
|
|
ctx := getContext()
|
|
removeAll := c.All
|
|
runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "could not get runtime")
|
|
}
|
|
defer runtime.DeferredShutdown(false)
|
|
|
|
args := c.InputArgs
|
|
if len(args) == 0 && !removeAll {
|
|
return errors.Errorf("image name or ID must be specified")
|
|
}
|
|
if len(args) > 0 && removeAll {
|
|
return errors.Errorf("when using the --all switch, you may not pass any images names or IDs")
|
|
}
|
|
|
|
images := args[:]
|
|
|
|
removeImage := func(img *adapter.ContainerImage) {
|
|
msg, err := runtime.RemoveImage(ctx, img, c.Force)
|
|
if err != nil {
|
|
if errors.Cause(err) == storage.ErrImageUsedByContainer {
|
|
fmt.Printf("A container associated with containers/storage, i.e. via Buildah, CRI-O, etc., may be associated with this image: %-12.12s\n", img.ID())
|
|
}
|
|
if !adapter.IsImageNotFound(err) {
|
|
exitCode = 2
|
|
failureCnt++
|
|
}
|
|
if lastError != nil {
|
|
fmt.Fprintln(os.Stderr, lastError)
|
|
}
|
|
lastError = err
|
|
return
|
|
}
|
|
fmt.Println(msg)
|
|
}
|
|
|
|
if removeAll {
|
|
var imagesToDelete []*adapter.ContainerImage
|
|
imagesToDelete, err = runtime.GetRWImages()
|
|
if err != nil {
|
|
return errors.Wrapf(err, "unable to query local images")
|
|
}
|
|
lastNumberofImages := 0
|
|
for len(imagesToDelete) > 0 {
|
|
if lastNumberofImages == len(imagesToDelete) {
|
|
return errors.New("unable to delete all images; re-run the rmi command again.")
|
|
}
|
|
for _, i := range imagesToDelete {
|
|
isParent, err := i.IsParent(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if isParent {
|
|
continue
|
|
}
|
|
removeImage(i)
|
|
}
|
|
lastNumberofImages = len(imagesToDelete)
|
|
imagesToDelete, err = runtime.GetRWImages()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// If no images are left to delete or there is just one image left and it cannot be deleted,
|
|
// lets break out and display the error
|
|
if len(imagesToDelete) == 0 || (lastNumberofImages == 1 && lastError != nil) {
|
|
break
|
|
}
|
|
}
|
|
} else {
|
|
// Create image.image objects for deletion from user input.
|
|
// Note that we have to query the storage one-by-one to
|
|
// always get the latest state for each image. Otherwise, we
|
|
// run inconsistency issues, for instance, with repoTags.
|
|
// See https://github.com/containers/libpod/issues/930 as
|
|
// an exemplary inconsistency issue.
|
|
for _, i := range images {
|
|
newImage, err := runtime.NewImageFromLocal(i)
|
|
if err != nil {
|
|
if lastError != nil {
|
|
if !adapter.IsImageNotFound(lastError) {
|
|
failureCnt++
|
|
}
|
|
fmt.Fprintln(os.Stderr, lastError)
|
|
}
|
|
lastError = err
|
|
continue
|
|
}
|
|
removeImage(newImage)
|
|
}
|
|
}
|
|
|
|
if adapter.IsImageNotFound(lastError) && failureCnt == 0 {
|
|
exitCode = 1
|
|
}
|
|
|
|
return lastError
|
|
}
|