From b0c7f5c2a9af746f6c5693393ab915ace53b0575 Mon Sep 17 00:00:00 2001 From: Michael Stucki Date: Sat, 19 Jul 2014 00:35:34 +0200 Subject: [PATCH] Print a message before building the image --- run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/run.sh b/run.sh index 1a30c71..94e571b 100755 --- a/run.sh +++ b/run.sh @@ -18,6 +18,7 @@ if [ $? -ne 0 ]; then echo "docker command not found" exit $? elif [[ -z $IMAGE_EXISTS ]]; then + echo "Building Docker image $REPOSITORY..." docker build --no-cache --rm -t $REPOSITORY . fi