mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
The podman module paths are moving from github.com/containers/podman to go.podman.io/podman. This will help with future mobility. Signed-off-by: Brent Baude <bbaude@redhat.com>
29 lines
664 B
Go
29 lines
664 B
Go
package containers
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"go.podman.io/podman/v6/cmd/podman/registry"
|
|
"go.podman.io/podman/v6/cmd/podman/validate"
|
|
)
|
|
|
|
var (
|
|
// Pull in configured json library
|
|
json = registry.JSONLibrary()
|
|
|
|
// Command: podman _container_
|
|
containerCmd = &cobra.Command{
|
|
Use: "container",
|
|
Short: "Manage containers",
|
|
Long: "Manage containers",
|
|
TraverseChildren: true,
|
|
RunE: validate.SubCommandExists,
|
|
}
|
|
|
|
containerConfig = registry.PodmanConfig().ContainersConfDefaultsRO
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: containerCmd,
|
|
})
|
|
}
|