|
@@ -13,7 +13,7 @@ func NewStackCommand(dockerCli *command.DockerCli) *cobra.Command {
|
|
|
Short: "Manage Docker stacks",
|
|
|
Args: cli.NoArgs,
|
|
|
RunE: dockerCli.ShowHelp,
|
|
|
- Tags: map[string]string{"experimental": "", "version": "1.25"},
|
|
|
+ Tags: map[string]string{"version": "1.25"},
|
|
|
}
|
|
|
cmd.AddCommand(
|
|
|
newDeployCommand(dockerCli),
|
|
@@ -30,5 +30,6 @@ func NewTopLevelDeployCommand(dockerCli *command.DockerCli) *cobra.Command {
|
|
|
cmd := newDeployCommand(dockerCli)
|
|
|
// Remove the aliases at the top level
|
|
|
cmd.Aliases = []string{}
|
|
|
+ cmd.Tags = map[string]string{"experimental": "", "version": "1.25"}
|
|
|
return cmd
|
|
|
}
|