Fix docker load error in federation image push

This commit is contained in:
Colin Hom 2016-05-26 19:43:54 -07:00
parent 2127a40596
commit f9e32118dc

View File

@ -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}"