mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 08:55:44 +00:00
add the option -f to force remove the parent container if --destory is specified resolves #13917 Signed-off-by: cdoern <cbdoer23@g.holycross.edu>
86 lines
2.3 KiB
Go
86 lines
2.3 KiB
Go
package containers
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/containers/podman/v4/cmd/podman/common"
|
|
"github.com/containers/podman/v4/cmd/podman/registry"
|
|
"github.com/containers/podman/v4/libpod/define"
|
|
"github.com/containers/podman/v4/pkg/domain/entities"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
cloneDescription = `Creates a copy of an existing container.`
|
|
|
|
containerCloneCommand = &cobra.Command{
|
|
Use: "clone [options] CONTAINER NAME IMAGE",
|
|
Short: "Clone an existing container",
|
|
Long: cloneDescription,
|
|
RunE: clone,
|
|
Args: cobra.RangeArgs(1, 3),
|
|
ValidArgsFunction: common.AutocompleteClone,
|
|
Example: `podman container clone container_name new_name image_name`,
|
|
}
|
|
)
|
|
|
|
var (
|
|
ctrClone entities.ContainerCloneOptions
|
|
)
|
|
|
|
func cloneFlags(cmd *cobra.Command) {
|
|
flags := cmd.Flags()
|
|
|
|
destroyFlagName := "destroy"
|
|
flags.BoolVar(&ctrClone.Destroy, destroyFlagName, false, "destroy the original container")
|
|
|
|
runFlagName := "run"
|
|
flags.BoolVar(&ctrClone.Run, runFlagName, false, "run the new container")
|
|
|
|
forceFlagName := "force"
|
|
flags.BoolVarP(&ctrClone.Force, forceFlagName, "f", false, "force the existing container to be destroyed")
|
|
|
|
common.DefineCreateFlags(cmd, &ctrClone.CreateOpts, false, true)
|
|
}
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: containerCloneCommand,
|
|
Parent: containerCmd,
|
|
})
|
|
|
|
cloneFlags(containerCloneCommand)
|
|
}
|
|
|
|
func clone(cmd *cobra.Command, args []string) error {
|
|
switch len(args) {
|
|
case 0:
|
|
return errors.Wrapf(define.ErrInvalidArg, "must specify at least 1 argument")
|
|
case 2:
|
|
ctrClone.CreateOpts.Name = args[1]
|
|
case 3:
|
|
ctrClone.CreateOpts.Name = args[1]
|
|
ctrClone.Image = args[2]
|
|
if !cliVals.RootFS {
|
|
rawImageName := args[0]
|
|
name, err := PullImage(ctrClone.Image, ctrClone.CreateOpts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ctrClone.Image = name
|
|
ctrClone.RawImageName = rawImageName
|
|
}
|
|
}
|
|
if ctrClone.Force && !ctrClone.Destroy {
|
|
return errors.Wrapf(define.ErrInvalidArg, "cannot set --force without --destroy")
|
|
}
|
|
|
|
ctrClone.ID = args[0]
|
|
ctrClone.CreateOpts.IsClone = true
|
|
rep, err := registry.ContainerEngine().ContainerClone(registry.GetContext(), ctrClone)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Println(rep.Id)
|
|
return nil
|
|
}
|