aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/manifest/remove.go
blob: 4aa3b66b73895f215c4f80da9438a0af17a99411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package manifest

import (
	"fmt"

	"github.com/containers/podman/v4/cmd/podman/common"
	"github.com/containers/podman/v4/cmd/podman/registry"
	"github.com/spf13/cobra"
)

var (
	removeCmd = &cobra.Command{
		Use:               "remove LIST IMAGE",
		Short:             "Remove an entry from a manifest list or image index",
		Long:              "Removes an image from a manifest list or image index.",
		RunE:              remove,
		Args:              cobra.ExactArgs(2),
		ValidArgsFunction: common.AutocompleteImages,
		Example:           `podman manifest remove mylist:v1.11 sha256:15352d97781ffdf357bf3459c037be3efac4133dc9070c2dce7eca7c05c3e736`,
	}
)

func init() {
	registry.Commands = append(registry.Commands, registry.CliCommand{
		Command: removeCmd,
		Parent:  manifestCmd,
	})
}

func remove(cmd *cobra.Command, args []string) error {
	updatedListID, err := registry.ImageEngine().ManifestRemoveDigest(registry.Context(), args[0], args[1])
	if err != nil {
		return fmt.Errorf("removing from manifest list %s: %w", args[0], err)
	}
	fmt.Println(updatedListID)
	return nil
}