From 48dd9cdeed3343ef9694d052a65e2e6ffe2e5130 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Sun, 12 Dec 2021 02:21:46 +0100 Subject: [PATCH] fix: simplify ps output --- cli/app/ps.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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) }