diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go index 572e3b0280..d57c4d26ac 100644 --- a/daemon/execdriver/native/seccomp_default.go +++ b/daemon/execdriver/native/seccomp_default.go @@ -869,6 +869,39 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Allow, Args: []*configs.Arg{}, }, + { + Name: "personality", + Action: configs.Allow, + Args: []*configs.Arg{ + { + Index: 0, + Value: 0x0, + Op: configs.EqualTo, + }, + }, + }, + { + Name: "personality", + Action: configs.Allow, + Args: []*configs.Arg{ + { + Index: 0, + Value: 0x0008, + Op: configs.EqualTo, + }, + }, + }, + { + Name: "personality", + Action: configs.Allow, + Args: []*configs.Arg{ + { + Index: 0, + Value: 0xffffffff, + Op: configs.EqualTo, + }, + }, + }, { Name: "pipe", Action: configs.Allow,