More updates.

This commit is contained in:
Shishir Mahajan 2020-08-31 16:14:52 -07:00
parent 0a8cb71583
commit c3d382a703
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A

View File

@ -113,6 +113,18 @@ mounts = [
} }
] ]
``` ```
**Custom seccomp profile example**
The default `docker` seccomp profile found [`here`](https://github.com/moby/moby/blob/master/profiles/seccomp/default.json)
can be downloaded, and modified (by removing/adding syscalls) to create a custom seccomp profile.
The custom seccomp profile can then be saved under `/opt/seccomp/seccomp.json` on the Nomad client nodes.
A nomad job can be launched using this custom seccomp profile.
```
config {
seccomp = true
seccomp_profile = "/opt/seccomp/seccomp.json"
}
```
## Networking ## Networking