mirror of https://github.com/docker/cli.git
Fix the max-concurrent-downloads and max-concurrent-uploads configs documentation
This fix tries to address issues raised in moby/moby#44346. The max-concurrent-downloads and max-concurrent-uploads limits are applied for the whole engine and not for each pull/push command. Signed-off-by: Luis Henrique Mulinari <luis.mulinari@gmail.com>
This commit is contained in:
parent
cd3c5adce8
commit
c264374cb8
|
@ -2771,8 +2771,8 @@ __docker_subcommand() {
|
||||||
"($help)--live-restore[Enable live restore of docker when containers are still running]" \
|
"($help)--live-restore[Enable live restore of docker when containers are still running]" \
|
||||||
"($help)--log-driver=[Default driver for container logs]:logging driver:__docker_complete_log_drivers" \
|
"($help)--log-driver=[Default driver for container logs]:logging driver:__docker_complete_log_drivers" \
|
||||||
"($help)*--log-opt=[Default log driver options for containers]:log driver options:__docker_complete_log_options" \
|
"($help)*--log-opt=[Default log driver options for containers]:log driver options:__docker_complete_log_options" \
|
||||||
"($help)--max-concurrent-downloads[Set the max concurrent downloads for each pull]" \
|
"($help)--max-concurrent-downloads[Set the max concurrent downloads]" \
|
||||||
"($help)--max-concurrent-uploads[Set the max concurrent uploads for each push]" \
|
"($help)--max-concurrent-uploads[Set the max concurrent uploads]" \
|
||||||
"($help)--max-download-attempts[Set the max download attempts for each pull]" \
|
"($help)--max-download-attempts[Set the max download attempts for each pull]" \
|
||||||
"($help)--mtu=[Network MTU]:mtu:(0 576 1420 1500 9000)" \
|
"($help)--mtu=[Network MTU]:mtu:(0 576 1420 1500 9000)" \
|
||||||
"($help)--oom-score-adjust=[Set the oom_score_adj for the daemon]:oom-score:(-500)" \
|
"($help)--oom-score-adjust=[Set the oom_score_adj for the daemon]:oom-score:(-500)" \
|
||||||
|
|
|
@ -77,8 +77,8 @@ Options:
|
||||||
--log-driver string Default driver for container logs (default "json-file")
|
--log-driver string Default driver for container logs (default "json-file")
|
||||||
-l, --log-level string Set the logging level ("debug"|"info"|"warn"|"error"|"fatal") (default "info")
|
-l, --log-level string Set the logging level ("debug"|"info"|"warn"|"error"|"fatal") (default "info")
|
||||||
--log-opt map Default log driver options for containers (default map[])
|
--log-opt map Default log driver options for containers (default map[])
|
||||||
--max-concurrent-downloads int Set the max concurrent downloads for each pull (default 3)
|
--max-concurrent-downloads int Set the max concurrent downloads (default 3)
|
||||||
--max-concurrent-uploads int Set the max concurrent uploads for each push (default 5)
|
--max-concurrent-uploads int Set the max concurrent uploads (default 5)
|
||||||
--max-download-attempts int Set the max download attempts for each pull (default 5)
|
--max-download-attempts int Set the max download attempts for each pull (default 5)
|
||||||
--metrics-addr string Set default address and port to serve the metrics api on
|
--metrics-addr string Set default address and port to serve the metrics api on
|
||||||
--mtu int Set the containers network MTU
|
--mtu int Set the containers network MTU
|
||||||
|
|
|
@ -330,10 +330,10 @@ unix://[/path/to/socket] to use.
|
||||||
Set the containers network mtu. Default is `0`.
|
Set the containers network mtu. Default is `0`.
|
||||||
|
|
||||||
**--max-concurrent-downloads**=*3*
|
**--max-concurrent-downloads**=*3*
|
||||||
Set the max concurrent downloads for each pull. Default is `3`.
|
Set the max concurrent downloads. Default is `3`.
|
||||||
|
|
||||||
**--max-concurrent-uploads**=*5*
|
**--max-concurrent-uploads**=*5*
|
||||||
Set the max concurrent uploads for each push. Default is `5`.
|
Set the max concurrent uploads. Default is `5`.
|
||||||
|
|
||||||
**--max-download-attempts**=*5*
|
**--max-download-attempts**=*5*
|
||||||
Set the max download attempts for each pull. Default is `5`.
|
Set the max download attempts for each pull. Default is `5`.
|
||||||
|
|
Loading…
Reference in New Issue