mirror of https://github.com/docker/docs.git
Allow the waitpid syscall
This version is sometimes used eg by glibc on x86 Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
This commit is contained in:
parent
ca3ae72e43
commit
822c4f79ab
|
@ -1549,6 +1549,11 @@ var defaultSeccompProfile = &configs.Seccomp{
|
||||||
Action: configs.Allow,
|
Action: configs.Allow,
|
||||||
Args: []*configs.Arg{},
|
Args: []*configs.Arg{},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "waitpid",
|
||||||
|
Action: configs.Allow,
|
||||||
|
Args: []*configs.Arg{},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Name: "write",
|
Name: "write",
|
||||||
Action: configs.Allow,
|
Action: configs.Allow,
|
||||||
|
|
Loading…
Reference in New Issue