Browse code

Add concurrent uploads/downloads section

Document and link to the concurrent uploads/downloads daemon option.

Signed-off-by: Jacob Tomlinson <jacob@tom.linson.uk>

Jacob Tomlinson authored on 2016/11/23 06:24:37
Showing 2 changed files
... ...
@@ -44,6 +44,13 @@ environment variables. To set these environment variables on a host using
44 44
 `systemd`, refer to the [control and configure Docker with systemd](https://docs.docker.com/engine/admin/systemd/#http-proxy)
45 45
 for variables configuration.
46 46
 
47
+## Concurrent downloads
48
+
49
+By default the Docker daemon will pull three layers of an image at a time.
50
+If you are on a low bandwidth connection this may cause timeout issues and you may want to lower
51
+this via the `--max-concurrent-downloads` daemon option. See the
52
+[daemon documentation](dockerd.md) for more details.
53
+
47 54
 ## Examples
48 55
 
49 56
 ### Pull an image from Docker Hub
... ...
@@ -36,6 +36,13 @@ running in a terminal, terminates the push operation.
36 36
 
37 37
 Registry credentials are managed by [docker login](login.md).
38 38
 
39
+## Concurrent uploads
40
+
41
+By default the Docker daemon will push five layers of an image at a time.
42
+If you are on a low bandwidth connection this may cause timeout issues and you may want to lower
43
+this via the `--max-concurrent-uploads` daemon option. See the
44
+[daemon documentation](dockerd.md) for more details.
45
+
39 46
 ## Examples
40 47
 
41 48
 ### Pushing a new image to a registry