From 4648c008485f7e4d1ff53f9963d97eb8d7e16d9c Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Sun, 9 Oct 2022 12:54:20 +0200 Subject: [PATCH] docs: use correct separator in --security-opt > Security options with `:` as a separator are deprecated and will be completely unsupported in 17.04, use `=` instead. Signed-off-by: Felix Geyer --- docs/reference/run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/run.md b/docs/reference/run.md index 7c137e5f9790..d81dbedb5232 100644 --- a/docs/reference/run.md +++ b/docs/reference/run.md @@ -687,7 +687,7 @@ the container exits**, you can add the `--rm` flag: | `--security-opt="label=level:LEVEL"` | Set the label level for the container | | `--security-opt="label=disable"` | Turn off label confinement for the container | | `--security-opt="apparmor=PROFILE"` | Set the apparmor profile to be applied to the container | -| `--security-opt="no-new-privileges:true"` | Disable container processes from gaining new privileges | +| `--security-opt="no-new-privileges=true"` | Disable container processes from gaining new privileges | | `--security-opt="seccomp=unconfined"` | Turn off seccomp confinement for the container | | `--security-opt="seccomp=profile.json"` | White-listed syscalls seccomp Json file to be used as a seccomp filter |