mirror of https://github.com/docker/compose.git
Only account running containers for logs
Signed-off-by: Laura Brehm <laurabrehm@hey.com>
This commit is contained in:
parent
e94eb056b4
commit
220626ec5e
|
@ -99,6 +99,12 @@ func isService(services ...string) containerPredicate {
|
|||
}
|
||||
}
|
||||
|
||||
func isRunning() containerPredicate {
|
||||
return func(c moby.Container) bool {
|
||||
return c.State == "running"
|
||||
}
|
||||
}
|
||||
|
||||
func isNotService(services ...string) containerPredicate {
|
||||
return func(c moby.Container) bool {
|
||||
service := c.Labels[api.ServiceLabel]
|
||||
|
|
|
@ -72,6 +72,7 @@ func (s *composeService) Logs(
|
|||
}
|
||||
|
||||
if options.Follow {
|
||||
containers = containers.filter(isRunning())
|
||||
printer := newLogPrinter(consumer)
|
||||
eg.Go(func() error {
|
||||
_, err := printer.Run(false, "", nil)
|
||||
|
|
Loading…
Reference in New Issue