2015-03-24 23:57:23 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2015-04-03 20:39:06 -04:00
|
|
|
"encoding/json"
|
2015-03-24 23:57:23 -04:00
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"text/tabwriter"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api"
|
2015-04-03 20:39:06 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2015-03-24 23:57:23 -04:00
|
|
|
"github.com/docker/docker/opts"
|
|
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
|
|
"github.com/docker/docker/pkg/parsers/filters"
|
|
|
|
"github.com/docker/docker/pkg/stringid"
|
2015-03-29 17:17:23 -04:00
|
|
|
"github.com/docker/docker/pkg/stringutils"
|
2015-03-24 23:57:23 -04:00
|
|
|
"github.com/docker/docker/pkg/units"
|
|
|
|
)
|
|
|
|
|
2015-03-25 13:34:41 -04:00
|
|
|
// CmdPs outputs a list of Docker containers.
|
|
|
|
//
|
|
|
|
// Usage: docker ps [OPTIONS]
|
2015-03-24 23:57:23 -04:00
|
|
|
func (cli *DockerCli) CmdPs(args ...string) error {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
|
|
|
|
psFilterArgs = filters.Args{}
|
|
|
|
v = url.Values{}
|
|
|
|
|
|
|
|
cmd = cli.Subcmd("ps", "", "List containers", true)
|
|
|
|
quiet = cmd.Bool([]string{"q", "-quiet"}, false, "Only display numeric IDs")
|
|
|
|
size = cmd.Bool([]string{"s", "-size"}, false, "Display total file sizes")
|
|
|
|
all = cmd.Bool([]string{"a", "-all"}, false, "Show all containers (default shows just running)")
|
|
|
|
noTrunc = cmd.Bool([]string{"#notrunc", "-no-trunc"}, false, "Don't truncate output")
|
|
|
|
nLatest = cmd.Bool([]string{"l", "-latest"}, false, "Show the latest created container, include non-running")
|
|
|
|
since = cmd.String([]string{"#sinceId", "#-since-id", "-since"}, "", "Show created since Id or Name, include non-running")
|
|
|
|
before = cmd.String([]string{"#beforeId", "#-before-id", "-before"}, "", "Show only container created before Id or Name")
|
|
|
|
last = cmd.Int([]string{"n"}, -1, "Show n last created containers, include non-running")
|
|
|
|
flFilter = opts.NewListOpts(nil)
|
|
|
|
)
|
|
|
|
cmd.Require(flag.Exact, 0)
|
|
|
|
|
|
|
|
cmd.Var(&flFilter, []string{"f", "-filter"}, "Filter output based on conditions provided")
|
|
|
|
|
2015-03-28 21:22:46 -04:00
|
|
|
cmd.ParseFlags(args, true)
|
2015-03-24 23:57:23 -04:00
|
|
|
if *last == -1 && *nLatest {
|
|
|
|
*last = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if *all {
|
|
|
|
v.Set("all", "1")
|
|
|
|
}
|
|
|
|
|
|
|
|
if *last != -1 {
|
|
|
|
v.Set("limit", strconv.Itoa(*last))
|
|
|
|
}
|
|
|
|
|
|
|
|
if *since != "" {
|
|
|
|
v.Set("since", *since)
|
|
|
|
}
|
|
|
|
|
|
|
|
if *before != "" {
|
|
|
|
v.Set("before", *before)
|
|
|
|
}
|
|
|
|
|
|
|
|
if *size {
|
|
|
|
v.Set("size", "1")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Consolidate all filter flags, and sanity check them.
|
|
|
|
// They'll get processed in the daemon/server.
|
|
|
|
for _, f := range flFilter.GetAll() {
|
|
|
|
if psFilterArgs, err = filters.ParseFlag(f, psFilterArgs); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(psFilterArgs) > 0 {
|
2015-03-25 22:31:29 -04:00
|
|
|
filterJSON, err := filters.ToParam(psFilterArgs)
|
2015-03-24 23:57:23 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-25 22:31:29 -04:00
|
|
|
v.Set("filters", filterJSON)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
|
|
|
|
2015-04-03 20:39:06 -04:00
|
|
|
rdr, _, err := cli.call("GET", "/containers/json?"+v.Encode(), nil, nil)
|
2015-03-24 23:57:23 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-04-03 20:39:06 -04:00
|
|
|
containers := []types.Container{}
|
2015-04-26 12:50:25 -04:00
|
|
|
if err := json.NewDecoder(rdr).Decode(&containers); err != nil {
|
2015-03-24 23:57:23 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
w := tabwriter.NewWriter(cli.out, 20, 1, 3, ' ', 0)
|
|
|
|
if !*quiet {
|
|
|
|
fmt.Fprint(w, "CONTAINER ID\tIMAGE\tCOMMAND\tCREATED\tSTATUS\tPORTS\tNAMES")
|
|
|
|
|
|
|
|
if *size {
|
|
|
|
fmt.Fprintln(w, "\tSIZE")
|
|
|
|
} else {
|
|
|
|
fmt.Fprint(w, "\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stripNamePrefix := func(ss []string) []string {
|
|
|
|
for i, s := range ss {
|
|
|
|
ss[i] = s[1:]
|
|
|
|
}
|
|
|
|
|
|
|
|
return ss
|
|
|
|
}
|
|
|
|
|
2015-04-03 20:39:06 -04:00
|
|
|
for _, container := range containers {
|
|
|
|
ID := container.ID
|
2015-03-24 23:57:23 -04:00
|
|
|
|
|
|
|
if !*noTrunc {
|
2015-04-03 20:39:06 -04:00
|
|
|
ID = stringid.TruncateID(ID)
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if *quiet {
|
2015-04-03 20:39:06 -04:00
|
|
|
fmt.Fprintln(w, ID)
|
2015-03-24 23:57:23 -04:00
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2015-04-03 20:39:06 -04:00
|
|
|
names = stripNamePrefix(container.Names)
|
|
|
|
command = strconv.Quote(container.Command)
|
2015-03-24 23:57:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if !*noTrunc {
|
2015-03-29 17:17:23 -04:00
|
|
|
command = stringutils.Truncate(command, 20)
|
2015-03-24 23:57:23 -04:00
|
|
|
|
|
|
|
// only display the default name for the container with notrunc is passed
|
2015-04-03 20:39:06 -04:00
|
|
|
for _, name := range names {
|
2015-03-24 23:57:23 -04:00
|
|
|
if len(strings.Split(name, "/")) == 1 {
|
2015-04-03 20:39:06 -04:00
|
|
|
names = []string{name}
|
2015-03-24 23:57:23 -04:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-03 20:39:06 -04:00
|
|
|
image := container.Image
|
2015-03-24 23:57:23 -04:00
|
|
|
if image == "" {
|
|
|
|
image = "<no image>"
|
|
|
|
}
|
|
|
|
|
2015-04-03 20:39:06 -04:00
|
|
|
fmt.Fprintf(w, "%s\t%s\t%s\t%s ago\t%s\t%s\t%s\t", ID, image, command,
|
2015-05-14 20:31:34 -04:00
|
|
|
units.HumanDuration(time.Now().UTC().Sub(time.Unix(int64(container.Created), 0))),
|
2015-04-07 15:34:30 -04:00
|
|
|
container.Status, api.DisplayablePorts(container.Ports), strings.Join(names, ","))
|
2015-03-24 23:57:23 -04:00
|
|
|
|
|
|
|
if *size {
|
2015-04-03 20:39:06 -04:00
|
|
|
if container.SizeRootFs > 0 {
|
|
|
|
fmt.Fprintf(w, "%s (virtual %s)\n", units.HumanSize(float64(container.SizeRw)), units.HumanSize(float64(container.SizeRootFs)))
|
2015-03-24 23:57:23 -04:00
|
|
|
} else {
|
2015-04-03 20:39:06 -04:00
|
|
|
fmt.Fprintf(w, "%s\n", units.HumanSize(float64(container.SizeRw)))
|
2015-03-24 23:57:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprint(w, "\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !*quiet {
|
|
|
|
w.Flush()
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|