From 71ca76e8f20c33d313d2d0dffba0eddf39e69f9e Mon Sep 17 00:00:00 2001 From: Brian Goff Date: Fri, 9 Dec 2016 08:26:05 -0500 Subject: [PATCH] Set inspect type in ensure-emptyfs This keeps the test daemon logs from being flooded with calls to lookup emptyfs for other types. Signed-off-by: Brian Goff --- hack/make/.ensure-emptyfs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make/.ensure-emptyfs b/hack/make/.ensure-emptyfs index e71a30ae81..fca5c314fd 100644 --- a/hack/make/.ensure-emptyfs +++ b/hack/make/.ensure-emptyfs @@ -1,7 +1,7 @@ #!/bin/bash set -e -if ! docker inspect emptyfs &> /dev/null; then +if ! docker inspect -t image emptyfs &> /dev/null; then # let's build a "docker save" tarball for "emptyfs" # see https://github.com/docker/docker/pull/5262 # and also https://github.com/docker/docker/issues/4242