diff --git a/cli/app/ps.go b/cli/app/ps.go index 0e9507d0..2038ee20 100644 --- a/cli/app/ps.go +++ b/cli/app/ps.go @@ -64,7 +64,7 @@ func showPSOutput(c *cli.Context) { logrus.Fatal(err) } - tableCol := []string{"image", "created", "status", "ports", "app name", "services"} + tableCol := []string{"image", "created", "status", "ports"} table := abraFormatter.CreateTable(tableCol) for _, container := range containers { @@ -79,8 +79,6 @@ func showPSOutput(c *cli.Context) { abraFormatter.HumanDuration(container.Created), container.Status, formatter.DisplayablePorts(container.Ports), - app.StackName(), - strings.Join(containerNames, "\n"), } table.Append(tableRow) }