From 9848394e28d58250a02adead10af6e75456043d7 Mon Sep 17 00:00:00 2001 From: Shishir Mahajan Date: Mon, 31 Aug 2020 16:17:12 -0700 Subject: [PATCH] Fix indentation. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f8bd262..3978c12 100644 --- a/README.md +++ b/README.md @@ -114,15 +114,16 @@ 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. +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" + seccomp = true + seccomp_profile = "/opt/seccomp/seccomp.json" } ```