浏览代码

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 2 年之前
父节点
当前提交
6b1b71ced4
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      hack/make/run

+ 1 - 0
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
 )