From 68c0cec77257a4bdb6cc33ae6d1ccde7d98e5b1e Mon Sep 17 00:00:00 2001 From: Albin Kerouanton Date: Sun, 9 Jul 2023 22:26:07 +0200 Subject: [PATCH] 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 (cherry picked from commit 6b1b71ced496bf35b5b9fedf8e0490ce91541ea3) Signed-off-by: Sebastiaan van Stijn --- hack/make/run | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/make/run b/hack/make/run index 87fe6d06aa..16d9febc34 100644 --- a/hack/make/run +++ b/hack/make/run @@ -58,6 +58,7 @@ args=( --host="unix://${socket}" --storage-driver="${DOCKER_GRAPHDRIVER}" --userland-proxy="${DOCKER_USERLANDPROXY}" + --tls=false $storage_params $extra_params )