From f9e32118dc45eb620759421df5368964c3d57000 Mon Sep 17 00:00:00 2001 From: Colin Hom Date: Thu, 26 May 2016 19:43:54 -0700 Subject: [PATCH] Fix docker load error in federation image push --- federation/cluster/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/federation/cluster/common.sh b/federation/cluster/common.sh index 1c04b0ab45d..9fb63a06a87 100644 --- a/federation/cluster/common.sh +++ b/federation/cluster/common.sh @@ -156,7 +156,7 @@ function push-federated-images { echo "Load: ${imageFile}" # Load the image. Trust we know what it's called, as docker load provides no help there :( - docker load -q < "${imageFile}" + docker load < "${imageFile}" local srcImageTag="$(cat ${imageFolder}/${binary}.docker_tag)" local dstImageTag="${FEDERATION_IMAGE_TAG:-$srcImageTag}"