From 32b234885e798650cdff70f0459175e79a294b4d Mon Sep 17 00:00:00 2001 From: Yong Tang <yong.tang.github@outlook.com> Date: Thu, 26 May 2016 20:04:48 -0700 Subject: [PATCH] Fix error in dockerd.md for incorrect cluster-store-opts example. This fix fixes an error in documentation (dockerd.md). In the example given by dockerd.md, the option `cluster-store-opts` is assigned with an array but this option can only be assigned as a map. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> --- docs/reference/commandline/dockerd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/commandline/dockerd.md b/docs/reference/commandline/dockerd.md index c425f92c63..1655b132be 100644 --- a/docs/reference/commandline/dockerd.md +++ b/docs/reference/commandline/dockerd.md @@ -913,7 +913,7 @@ This is a full example of the allowed configuration options in the file: "pidfile": "", "graph": "", "cluster-store": "", - "cluster-store-opts": [], + "cluster-store-opts": {}, "cluster-advertise": "", "max-concurrent-downloads": 3, "max-concurrent-uploads": 5,