Browse code

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>

Albin Kerouanton authored on 2023/07/10 05:26:07
Showing 1 changed files
... ...
@@ -58,6 +58,7 @@ args=(
58 58
 	--host="unix://${socket}"
59 59
 	--storage-driver="${DOCKER_GRAPHDRIVER}"
60 60
 	--userland-proxy="${DOCKER_USERLANDPROXY}"
61
+	--tls=false
61 62
 	$storage_params
62 63
 	$extra_params
63 64
 )