mirror of https://github.com/docker/docs.git
Merge pull request #19217 from justincormack/arm_syscalls
Add arm specific syscalls to default seccomp profile
This commit is contained in:
commit
a96a0b3781
|
@ -1570,5 +1570,21 @@ var defaultSeccompProfile = &configs.Seccomp{
|
||||||
Action: configs.Allow,
|
Action: configs.Allow,
|
||||||
Args: []*configs.Arg{},
|
Args: []*configs.Arg{},
|
||||||
},
|
},
|
||||||
|
// arm specific syscalls
|
||||||
|
{
|
||||||
|
Name: "breakpoint",
|
||||||
|
Action: configs.Allow,
|
||||||
|
Args: []*configs.Arg{},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "cacheflush",
|
||||||
|
Action: configs.Allow,
|
||||||
|
Args: []*configs.Arg{},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "set_tls",
|
||||||
|
Action: configs.Allow,
|
||||||
|
Args: []*configs.Arg{},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue