From 8df67bfeb5326ddf4297e4f4179737e291b6987b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 12 Sep 2017 12:10:32 +0200 Subject: [PATCH] After building the image, tell the user the image name This makes pushing easier, as you can copy-paste the name into the push command. --- docker/4_run/build.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/4_run/build.sh b/docker/4_run/build.sh index 8a6b0b7..61d45ac 100755 --- a/docker/4_run/build.sh +++ b/docker/4_run/build.sh @@ -1,3 +1,5 @@ -#!/usr/bin/env bash +#!/bin/bash -e -exec docker build -t armadillica/blender_cloud:latest -f run.docker . +docker build -t armadillica/blender_cloud:latest -f run.docker . + +echo "Done, built armadillica/blender_cloud:latest"