You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparmor profile specifies the name of the apparmor profile that will be used for the container.
222
+
For more information about Apparmor, see [Apparmor documentation](https://wiki.ubuntu.com/AppArmor)
223
+
224
+
```json
225
+
"apparmorProfile": "acme_secure_profile"
226
+
```
227
+
228
+
## Seccomp
229
+
230
+
Seccomp provides application sandboxing mechanism in the Linux kernel.
231
+
Seccomp configuration allows one to configure actions to take for matched syscalls and furthermore also allows
232
+
matching on values passed as arguments to syscalls.
233
+
For more information about Seccomp, see [Seccomp kernel documentation](https://www.kernel.org/doc/Documentation/prctl/seccomp_filter.txt)
234
+
The actions and operators are strings that match the definitions in seccomp.h from [libseccomp](https://github.com/seccomp/libseccomp) and are translated to corresponding values.
0 commit comments