Browse code

Disable buildkit's subreaper until the issue is understood

Signed-off-by: Tibor Vass <tibor@docker.com>

Tibor Vass authored on 2018/08/21 02:54:45
Showing 1 changed files
... ...
@@ -18,6 +18,11 @@ import (
18 18
 
19 19
 const networkName = "bridge"
20 20
 
21
+func init() {
22
+	// FIXME: https://github.com/moby/moby/issues/37676
23
+	runcexecutor.DisableSubReaper()
24
+}
25
+
21 26
 func newExecutor(root string, net libnetwork.NetworkController) (executor.Executor, error) {
22 27
 	return runcexecutor.New(runcexecutor.Opt{
23 28
 		Root:              filepath.Join(root, "executor"),