mirror of https://github.com/docker/docs.git
Merge pull request #18961 from justincormack/clock_adjtime
Block clock_adjtime in default seccomp config
This commit is contained in:
commit
8ac3d083a8
|
@ -28,6 +28,12 @@ var defaultSeccompProfile = &configs.Seccomp{
|
||||||
Action: configs.Errno,
|
Action: configs.Errno,
|
||||||
Args: []*configs.Arg{},
|
Args: []*configs.Arg{},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
// Time/Date is not namespaced
|
||||||
|
Name: "clock_adjtime",
|
||||||
|
Action: configs.Errno,
|
||||||
|
Args: []*configs.Arg{},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
// Time/Date is not namespaced
|
// Time/Date is not namespaced
|
||||||
Name: "clock_settime",
|
Name: "clock_settime",
|
||||||
|
|
Loading…
Reference in New Issue