Disable tls when launching dockerd through hack/make.sh
The daemon sleeps for 15 seconds at start up when the API binds to a TCP
socket with no TLS certificate set. That's what the hack/make/run script
does, but it doesn't explicitly disable tls, thus we're experiencing
this annoying delay every time we use this script.
Signed-off-by: Albin Kerouanton <albinker@gmail.com>
(cherry picked from commit 6b1b71ced4
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
d09fe00d36
commit
68c0cec772
1 changed files with 1 additions and 0 deletions
|
@ -58,6 +58,7 @@ args=(
|
||||||
--host="unix://${socket}"
|
--host="unix://${socket}"
|
||||||
--storage-driver="${DOCKER_GRAPHDRIVER}"
|
--storage-driver="${DOCKER_GRAPHDRIVER}"
|
||||||
--userland-proxy="${DOCKER_USERLANDPROXY}"
|
--userland-proxy="${DOCKER_USERLANDPROXY}"
|
||||||
|
--tls=false
|
||||||
$storage_params
|
$storage_params
|
||||||
$extra_params
|
$extra_params
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue