Merge pull request #29275 from cpuguy83/set_inspect_type_emptyfs

Set inspect type in ensure-emptyfs
Upstream-commit: f2533c0266f5447dfed9981f2c67c334900afa79
Component: engine
This commit is contained in:
Vincent Demeester
2016-12-09 21:40:58 +01:00
committed by GitHub
+1 -1
View File
@@ -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