diff --git a/cli/metrics/commands.go b/cli/metrics/commands.go index 203fe323..ee44cf7e 100644 --- a/cli/metrics/commands.go +++ b/cli/metrics/commands.go @@ -63,8 +63,10 @@ var commands = []string{ "b", "bake", "build", + "bundle", "ca", "commit", + "completion", "config", "connect", "convert", @@ -102,6 +104,7 @@ var commands = []string{ "logout", "logs", "ls", + "merge", "pause", "port", "promote", @@ -111,6 +114,7 @@ var commands = []string{ "push", "remove", "rename", + "render", "restart", "revoke", "rm", @@ -124,11 +128,14 @@ var commands = []string{ "set", "show", "sign", + "split", "start", "stats", + "status", "stop", "tag", "top", + "uninstall", "unlock", "unlock-key", "unpause", @@ -136,6 +143,7 @@ var commands = []string{ "update", "upgrade", "use", + "validate", "version", "wait", } diff --git a/cli/metrics/generatecommands/main.go b/cli/metrics/generatecommands/main.go index 862c96f1..8fe8ec78 100644 --- a/cli/metrics/generatecommands/main.go +++ b/cli/metrics/generatecommands/main.go @@ -25,9 +25,10 @@ import ( "github.com/docker/compose/v2/pkg/utils" ) -var managementCommands = []string{"ecs", "scan"} - -var commands []string +var ( + managementCommands = []string{"ecs", "scan"} + commands = []string{"bundle", "completion", "install", "merge", "render", "split", "status", "uninstall", "validate"} +) func main() { fmt.Println("Walking through docker help to list commands...")