Add ipc syscall to default seccomp profile
@@ -593,6 +593,11 @@
"action": "SCMP_ACT_ALLOW",
"args": []
},
+ {
+ "name": "ipc",
+ "action": "SCMP_ACT_ALLOW",
+ "args": []
+ },
{
"name": "kill",
@@ -625,6 +625,11 @@ var DefaultProfile = &types.Seccomp{
Action: types.ActAllow,
Args: []*types.Arg{},
+ Name: "ipc",
+ Action: types.ActAllow,
+ Args: []*types.Arg{},
Name: "kill",