2017-01-13 06:08:09 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
gocontext "context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/docker/containerd/api/execution"
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
var listCommand = cli.Command{
|
|
|
|
Name: "list",
|
|
|
|
Usage: "list containers",
|
|
|
|
Action: func(context *cli.Context) error {
|
|
|
|
executionService, err := getExecutionService(context)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-02-02 22:40:23 +00:00
|
|
|
listResponse, err := executionService.ListContainers(gocontext.Background(), &execution.ListContainersRequest{
|
2017-01-13 06:08:09 +00:00
|
|
|
Owner: []string{},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Printf("ID\tSTATUS\tPROCS\tBUNDLE\n")
|
|
|
|
for _, c := range listResponse.Containers {
|
|
|
|
listProcResponse, err := executionService.ListProcesses(gocontext.Background(),
|
2017-02-02 23:36:10 +00:00
|
|
|
&execution.ListProcessesRequest{ContainerID: c.ID})
|
2017-01-13 06:08:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Printf("%s\t%s\t%d\t%s\n",
|
|
|
|
c.ID,
|
|
|
|
c.Status,
|
|
|
|
len(listProcResponse.Processes),
|
2017-02-01 21:25:28 +00:00
|
|
|
c.Bundle,
|
2017-01-13 06:08:09 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|