diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go index 309d065f9b..2a50f37def 100644 --- a/daemon/execdriver/native/seccomp_default.go +++ b/daemon/execdriver/native/seccomp_default.go @@ -356,5 +356,17 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Errno, Args: []*configs.Arg{}, }, + { + // In kernel x86 real mode virtual machine + Name: "vm86", + Action: configs.Errno, + Args: []*configs.Arg{}, + }, + { + // In kernel x86 real mode virtual machine + Name: "vm86old", + Action: configs.Errno, + Args: []*configs.Arg{}, + }, }, }