aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/tag.go
blob: 2c7cf4abb6fe17146874873c537cbe2777362d2e (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main

import (
	"github.com/containers/libpod/cmd/podman/cliconfig"
	"github.com/containers/libpod/libpod/adapter"
	"github.com/pkg/errors"
	"github.com/spf13/cobra"
)

var (
	tagCommand cliconfig.TagValues

	tagDescription = "Adds one or more additional names to locally-stored image"
	_tagCommand    = &cobra.Command{
		Use:   "tag",
		Short: "Add an additional name to a local image",
		Long:  tagDescription,
		RunE: func(cmd *cobra.Command, args []string) error {
			tagCommand.InputArgs = args
			tagCommand.GlobalFlags = MainGlobalOpts
			return tagCmd(&tagCommand)
		},
		Example: "IMAGE-NAME [IMAGE-NAME ...]",
	}
)

func init() {
	tagCommand.Command = _tagCommand
	rootCmd.AddCommand(tagCommand.Command)

}

func tagCmd(c *cliconfig.TagValues) error {
	args := c.InputArgs
	if len(args) < 2 {
		return errors.Errorf("image name and at least one new name must be specified")
	}
	runtime, err := adapter.GetRuntime(&c.PodmanCommand)
	if err != nil {
		return errors.Wrapf(err, "could not create runtime")
	}
	defer runtime.Shutdown(false)

	newImage, err := runtime.NewImageFromLocal(args[0])
	if err != nil {
		return err
	}

	for _, tagName := range args[1:] {
		if err := newImage.TagImage(tagName); err != nil {
			return errors.Wrapf(err, "error adding '%s' to image %q", tagName, newImage.InputName)
		}
	}
	return nil
}