diff --git a/cli/internal/deploy.go b/cli/internal/deploy.go index bf0b6cad..1acb93f6 100644 --- a/cli/internal/deploy.go +++ b/cli/internal/deploy.go @@ -139,7 +139,7 @@ func DeployAction(c *cli.Context) error { // DeployOverview shows a deployment overview func DeployOverview(app config.App, version, message string) error { - tableCol := []string{"server", "compose", "domain", "stack", "version"} + tableCol := []string{"server", "compose", "domain", "app name", "version"} table := abraFormatter.CreateTable(tableCol) deployConfig := "compose.yml" @@ -177,7 +177,7 @@ func DeployOverview(app config.App, version, message string) error { // NewVersionOverview shows an upgrade or downgrade overview func NewVersionOverview(app config.App, currentVersion, newVersion string) error { - tableCol := []string{"server", "compose", "domain", "stack", "current version", "to be deployed"} + tableCol := []string{"server", "compose", "domain", "app name", "current version", "to be deployed"} table := abraFormatter.CreateTable(tableCol) deployConfig := "compose.yml"