Răsfoiți Sursa

only monitor attached services on up command

Signed-off-by: Guillaume Lours <[email protected]>
Guillaume Lours 5 luni în urmă
părinte
comite
c2cb0aef6b
1 a modificat fișierele cu 2 adăugiri și 1 ștergeri
  1. 2 1
      pkg/compose/up.go

+ 2 - 1
pkg/compose/up.go

@@ -168,7 +168,8 @@ func (s *composeService) Up(ctx context.Context, project *types.Project, options
 	if len(options.Start.Services) > 0 {
 	if len(options.Start.Services) > 0 {
 		monitor.withServices(options.Start.Services)
 		monitor.withServices(options.Start.Services)
 	} else {
 	} else {
-		monitor.withServices(project.ServiceNames())
+		// Start.AttachTo have been already curated with only the services to monitor
+		monitor.withServices(options.Start.AttachTo)
 	}
 	}
 	monitor.withListener(printer.HandleEvent)
 	monitor.withListener(printer.HandleEvent)