We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a8cb71 commit c3d382aCopy full SHA for c3d382a
README.md
@@ -113,6 +113,18 @@ mounts = [
113
}
114
]
115
```
116
+**Custom seccomp profile example**
117
+The default `docker` seccomp profile found [`here`](https://github.com/moby/moby/blob/master/profiles/seccomp/default.json)
118
+can be downloaded, and modified (by removing/adding syscalls) to create a custom seccomp profile.
119
+The custom seccomp profile can then be saved under `/opt/seccomp/seccomp.json` on the Nomad client nodes.
120
+
121
+A nomad job can be launched using this custom seccomp profile.
122
+```
123
+config {
124
+ seccomp = true
125
+ seccomp_profile = "/opt/seccomp/seccomp.json"
126
+}
127
128
129
## Networking
130
0 commit comments