This repository was archived by the owner on Nov 27, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,118 +24,118 @@ var commandFlags = []string{
2424// Generated with generatecommands/main.go
2525var managementCommands = []string {
2626 "help" ,
27- "ecs" ,
28- "scan" ,
29- "image" ,
3027 "app" ,
3128 "builder" ,
32- "imagetools" ,
3329 "buildx" ,
3430 "checkpoint" ,
3531 "compose" ,
3632 "config" ,
3733 "container" ,
3834 "context" ,
3935 "create" ,
36+ "ecs" ,
37+ "image" ,
38+ "imagetools" ,
39+ "key" ,
40+ "login" ,
41+ "logout" ,
4042 "manifest" ,
4143 "network" ,
4244 "node" ,
4345 "plugin" ,
46+ "scan" ,
4447 "secret" ,
4548 "service" ,
49+ "signer" ,
4650 "stack" ,
4751 "swarm" ,
4852 "system" ,
49- "key" ,
50- "signer" ,
5153 "trust" ,
5254 "volume" ,
53- "login" ,
54- "logout" ,
5555}
5656
5757var commands = []string {
58- "inspect" ,
59- "ls" ,
60- "list" ,
61- "rm" ,
62- "remove" ,
63- "tag" ,
64- "build" ,
65- "init" ,
66- "pull" ,
67- "push" ,
68- "run" ,
69- "deploy" ,
70- "update" ,
71- "prune" ,
72- "create" ,
73- "bake" ,
74- "f" ,
58+ "aci" ,
59+ "add" ,
60+ "annotate" ,
61+ "attach" ,
62+ "azure" ,
7563 "b" ,
76- "du" ,
77- "stop" ,
78- "use" ,
79- "version" ,
80- "convert" ,
64+ "bake" ,
65+ "build" ,
66+ "ca" ,
67+ "commit" ,
8168 "config" ,
69+ "connect" ,
70+ "convert" ,
8271 "cp" ,
72+ "create" ,
73+ "demote" ,
74+ "deploy" ,
75+ "df" ,
76+ "diff" ,
77+ "disable" ,
78+ "disconnect" ,
8379 "down" ,
80+ "du" ,
81+ "ecs" ,
82+ "enable" ,
8483 "events" ,
8584 "exec" ,
85+ "export" ,
86+ "f" ,
87+ "generate" ,
88+ "history" ,
8689 "images" ,
90+ "import" ,
91+ "info" ,
92+ "init" ,
93+ "inspect" ,
94+ "install" ,
95+ "join" ,
96+ "join-token" ,
8797 "kill" ,
98+ "leave" ,
99+ "list" ,
100+ "load" ,
101+ "login" ,
102+ "logout" ,
88103 "logs" ,
104+ "ls" ,
89105 "pause" ,
90106 "port" ,
107+ "promote" ,
108+ "prune" ,
91109 "ps" ,
92- "restart" ,
93- "start" ,
94- "top" ,
95- "unpause" ,
96- "up" ,
97- "attach" ,
98- "commit" ,
99- "diff" ,
100- "export" ,
110+ "pull" ,
111+ "push" ,
112+ "remove" ,
101113 "rename" ,
102- "stats" ,
103- "wait" ,
104- "aci" ,
105- "ecs" ,
106- "import" ,
107- "show" ,
108- "history" ,
109- "load" ,
114+ "restart" ,
115+ "revoke" ,
116+ "rm" ,
110117 "rmi" ,
111- "save" ,
112- "annotate" ,
113- "connect" ,
114- "disconnect" ,
115- "demote" ,
116- "promote" ,
117- "disable" ,
118- "enable" ,
119- "install" ,
120- "set" ,
121- "upgrade" ,
122118 "rollback" ,
119+ "run" ,
120+ "save" ,
123121 "scale" ,
122+ "search" ,
124123 "services" ,
125- "ca" ,
126- "join" ,
127- "join-token" ,
128- "leave" ,
124+ "set" ,
125+ "show" ,
126+ "sign" ,
127+ "start" ,
128+ "stats" ,
129+ "stop" ,
130+ "tag" ,
131+ "top" ,
129132 "unlock" ,
130133 "unlock-key" ,
131- "df" ,
132- "info" ,
133- "generate" ,
134- "add" ,
135- "revoke" ,
136- "sign" ,
137- "login" ,
138- "azure" ,
139- "logout" ,
140- "search" ,
134+ "unpause" ,
135+ "up" ,
136+ "update" ,
137+ "upgrade" ,
138+ "use" ,
139+ "version" ,
140+ "wait" ,
141141}
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ package main
1919import (
2020 "fmt"
2121 "os/exec"
22+ "sort"
2223 "strings"
2324
2425 "github.com/docker/compose/v2/pkg/utils"
@@ -34,6 +35,9 @@ func main() {
3435 getCommands ("buildx" )
3536 getCommands ("compose" )
3637
38+ sort .Strings (managementCommands )
39+ sort .Strings (commands )
40+
3741 fmt .Printf (`
3842var managementCommands = []string{
3943 "help",
You can’t perform that action at this time.
0 commit comments