From 7b22b129b90614b3214d7031b83d663fdc94080a Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Fri, 28 Oct 2016 14:11:18 -0700 Subject: [PATCH] Update docs for dockerd.md about `max-concurrent-downloads/max-concurrent-uploads` It seems that `max-concurrent-downloads` and `max-concurrent-uploads` are supported in Windows for `config.json`. Though that was not mentioned in the docs for dockerd.md. This fix adds the following to the example `config.json` file for Windows: ``` "max-concurrent-downloads": 3, "max-concurrent-uploads": 5, ``` Signed-off-by: Yong Tang --- docs/reference/commandline/dockerd.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/reference/commandline/dockerd.md b/docs/reference/commandline/dockerd.md index b894af4d20..5aad8b3826 100644 --- a/docs/reference/commandline/dockerd.md +++ b/docs/reference/commandline/dockerd.md @@ -1208,6 +1208,8 @@ This is a full example of the allowed configuration options on Windows: "graph": "", "cluster-store": "", "cluster-advertise": "", + "max-concurrent-downloads": 3, + "max-concurrent-uploads": 5, "shutdown-timeout": 15, "debug": true, "hosts": [],