diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go index de6b7587b6..2a8202de8c 100644 --- a/daemon/execdriver/native/seccomp_default.go +++ b/daemon/execdriver/native/seccomp_default.go @@ -316,6 +316,12 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Errno, Args: []*configs.Arg{}, }, + { + // Deny umount + Name: "umount", + Action: configs.Errno, + Args: []*configs.Arg{}, + }, { // Deny umount Name: "umount2",