@@ -218,12 +218,12 @@ func SetupCommands(version string) {
218
218
composeCmd .AddCommand (composeStartCmd )
219
219
composeCmd .AddCommand (composeRestartCmd )
220
220
composeCmd .AddCommand (composeStopCmd )
221
- composeCmd .AddCommand (getServicesCmd ) // like docker compose ls
221
+ // composeCmd.AddCommand(getServicesCmd) // like docker compose ls
222
222
RootCmd .AddCommand (composeCmd )
223
223
224
224
// Add up/down commands to the root as well
225
- RootCmd .AddCommand (composeDownCmd )
226
- RootCmd .AddCommand (composeUpCmd )
225
+ // RootCmd.AddCommand(composeDownCmd)
226
+ // RootCmd.AddCommand(composeUpCmd)
227
227
// RootCmd.AddCommand(composeStartCmd)
228
228
// RootCmd.AddCommand(composeRestartCmd)
229
229
// RootCmd.AddCommand(composeStopCmd)
@@ -386,7 +386,7 @@ var RootCmd = &cobra.Command{
386
386
var loginCmd = & cobra.Command {
387
387
Use : "login" ,
388
388
Args : cobra .NoArgs ,
389
- Short : "Authenticate to the Defang cluster " ,
389
+ Short : "Authenticate to Defang" ,
390
390
RunE : func (cmd * cobra.Command , args []string ) error {
391
391
if nonInteractive {
392
392
if err := cli .NonInteractiveLogin (cmd .Context (), client , cluster ); err != nil {
@@ -641,7 +641,7 @@ var getServicesCmd = &cobra.Command{
641
641
Annotations : authNeededAnnotation ,
642
642
Args : cobra .NoArgs ,
643
643
Aliases : []string {"getServices" , "ls" , "list" },
644
- Short : "Get list of services on the cluster " ,
644
+ Short : "Get list of services in the project " ,
645
645
RunE : func (cmd * cobra.Command , args []string ) error {
646
646
long , _ := cmd .Flags ().GetBool ("long" )
647
647
0 commit comments