mirror of
https://github.com/containers/podman.git
synced 2025-10-19 12:12:36 +08:00

remote podman v1 and replace with podman v2. Signed-off-by: Brent Baude <bbaude@redhat.com>
35 lines
858 B
Go
35 lines
858 B
Go
package containers
|
|
|
|
import (
|
|
"github.com/containers/libpod/cmd/podman/registry"
|
|
"github.com/containers/libpod/pkg/domain/entities"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
// podman container _list_
|
|
listCmd = &cobra.Command{
|
|
Use: "list",
|
|
Aliases: []string{"ls"},
|
|
Args: cobra.NoArgs,
|
|
Short: "List containers",
|
|
Long: "Prints out information about the containers",
|
|
RunE: containers,
|
|
Example: `podman container list -a
|
|
podman container list -a --format "{{.ID}} {{.Image}} {{.Labels}} {{.Mounts}}"
|
|
podman container list --size --sort names`,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
|
|
Command: listCmd,
|
|
Parent: containerCmd,
|
|
})
|
|
}
|
|
|
|
func containers(cmd *cobra.Command, args []string) error {
|
|
return nil
|
|
}
|