mirror of
https://github.com/docker/compose.git
synced 2025-07-25 22:54:54 +02:00
Ignore errors when killing on second Ctrl-C
Signed-off-by: Jaime Soriano Pastor <jaime.soriano@elastic.co>
This commit is contained in:
parent
5c1e5f3fc7
commit
5daed33c6a
@ -119,11 +119,14 @@ func (s *composeService) Up(ctx context.Context, project *types.Project, options
|
|||||||
gracefulTeardown()
|
gracefulTeardown()
|
||||||
} else {
|
} else {
|
||||||
eg.Go(func() error {
|
eg.Go(func() error {
|
||||||
return s.Kill(context.Background(), project.Name, api.KillOptions{
|
// Intentionally ignore errors, for cases where some
|
||||||
|
// of the containers are already stopped.
|
||||||
|
s.kill(context.Background(), project.Name, api.KillOptions{
|
||||||
Services: options.Create.Services,
|
Services: options.Create.Services,
|
||||||
Project: project,
|
Project: project,
|
||||||
All: true,
|
All: true,
|
||||||
})
|
})
|
||||||
|
return nil
|
||||||
})
|
})
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user