diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go index 542ee95b7e..b1c353a004 100644 --- a/daemon/execdriver/native/seccomp_default.go +++ b/daemon/execdriver/native/seccomp_default.go @@ -1570,5 +1570,21 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Allow, 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{}, + }, }, }