diff --git a/components/engine/daemon/execdriver/native/seccomp_default.go b/components/engine/daemon/execdriver/native/seccomp_default.go index d8dfafde9b..542ee95b7e 100644 --- a/components/engine/daemon/execdriver/native/seccomp_default.go +++ b/components/engine/daemon/execdriver/native/seccomp_default.go @@ -1564,5 +1564,11 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Allow, Args: []*configs.Arg{}, }, + // i386 specific syscalls + { + Name: "modify_ldt", + Action: configs.Allow, + Args: []*configs.Arg{}, + }, }, }