mirror of https://github.com/docker/compose.git
Remove enterprise specific commands
Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
This commit is contained in:
parent
a09983b474
commit
7ff9162dc7
|
@ -24,10 +24,6 @@ var commandFlags = []string{
|
|||
// Generated with generatecommands/main.go
|
||||
var managementCommands = []string{
|
||||
"ecs",
|
||||
"assemble",
|
||||
"registry",
|
||||
"template",
|
||||
"cluster",
|
||||
"scan",
|
||||
"app",
|
||||
"builder",
|
||||
|
|
|
@ -24,11 +24,12 @@ import (
|
|||
"github.com/docker/compose-cli/utils"
|
||||
)
|
||||
|
||||
var managementCommands = []string{"ecs", "assemble", "registry", "template", "cluster", "scan"}
|
||||
var managementCommands = []string{"ecs", "scan"}
|
||||
|
||||
var commands = []string{}
|
||||
|
||||
func main() {
|
||||
fmt.Println("Walking through docker help to list commands...")
|
||||
getCommands()
|
||||
getCommands("compose")
|
||||
|
||||
|
|
Loading…
Reference in New Issue