From 1e5d013064eb4a043433c550296c2666aead63a4 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 26 Oct 2017 02:15:49 +0200 Subject: [PATCH] Fix daemon.json runtime example The example in the documentation used "runc", which is a reserved runtime name (as it's the default). This patch updates the example, and uses a different name. Signed-off-by: Sebastiaan van Stijn --- docs/reference/commandline/dockerd.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/commandline/dockerd.md b/docs/reference/commandline/dockerd.md index 6e83be2d01..a94d01ddd6 100644 --- a/docs/reference/commandline/dockerd.md +++ b/docs/reference/commandline/dockerd.md @@ -1326,8 +1326,8 @@ This is a full example of the allowed configuration options on Linux: "default-runtime": "runc", "oom-score-adjust": -500, "runtimes": { - "runc": { - "path": "runc" + "cc-runtime": { + "path": "/usr/bin/cc-runtime" }, "custom": { "path": "/usr/local/bin/my-runc-replacement",