Signed-off-by: Nicolas De Loof <[email protected]>
@@ -114,7 +114,7 @@ func (s *composeService) getContainerStreams(ctx context.Context, container moby
Stdin: true,
Stdout: true,
Stderr: true,
- Logs: true,
+ Logs: false,
})
if err != nil {
return nil, nil, err
@@ -114,6 +114,7 @@ func (s *composeService) ensureService(ctx context.Context, observedState Contai
w.Event(progress.RunningEvent(name))
case status.ContainerCreated:
case status.ContainerRestarting:
+ case status.ContainerExited:
w.Event(progress.CreatedEvent(name))
default:
eg.Go(func() error {