We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e0292d7 + af2ffcf commit bb9ca29Copy full SHA for bb9ca29
1 file changed
builder/bin/boot
@@ -55,7 +55,12 @@ done
55
56
# HACK: load progrium/cedarish tarball for faster boot times
57
# see https://github.com/deis/deis/issues/1027
58
-docker load -i /progrium_cedarish.tar
+if ! docker history progrium/cedarish >/dev/null 2>/dev/null ; then
59
+ echo "Loading cedarish..."
60
+ docker load -i /progrium_cedarish.tar
61
+else
62
+ echo "Cedarish already loaded"
63
+fi
64
65
# pull required images
66
0 commit comments