From ca16c002ba3caf05b303e4257131fa72eb2fa24c Mon Sep 17 00:00:00 2001 From: decentral1se Date: Thu, 14 Oct 2021 11:32:32 +0200 Subject: [PATCH] docs: add more description for versions command --- cli/app/version.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cli/app/version.go b/cli/app/version.go index 64084091d..8ba4f2061 100644 --- a/cli/app/version.go +++ b/cli/app/version.go @@ -32,7 +32,12 @@ func getImagePath(image string) (string, error) { var appVersionCommand = &cli.Command{ Name: "version", Aliases: []string{"v"}, - Usage: "Show app version", + Usage: "Show app versions", + Description: ` +This command shows all information about versioning related to a deployed app. +This includes the individual image names, tags and digests. But also the Co-op +Cloud recipe version. +`, Action: func(c *cli.Context) error { app := internal.ValidateApp(c) stackName := app.StackName()