From 862631b93a1a8d84b333448a12be9eefeae6cc38 Mon Sep 17 00:00:00 2001 From: William Wernert Date: Fri, 22 May 2020 14:47:00 -0400 Subject: [PATCH] [fix] Add space in daemon.json --- setup/so-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/so-functions b/setup/so-functions index ccfd59629..083b9db61 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -619,7 +619,7 @@ docker_registry() { if [ -n "$TURBO" ]; then local proxy="$TURBO"; else local proxy="$MSRV"; fi printf '%s\n'\ "{"\ - " \"registry-mirrors\": [\"https://$proxy:5000\"]"\ + " \"registry-mirrors\": [ \"https://$proxy:5000\" ]"\ "}" > /etc/docker/daemon.json echo "Docker Registry Setup - Complete" >> "$setup_log" 2>&1