From 3c5b4bdab700a561dd2f30d9fd54f27bd1a51853 Mon Sep 17 00:00:00 2001 From: Jason Yellick Date: Fri, 23 Feb 2018 16:12:22 -0500 Subject: [PATCH] [FAB-8489] Make IMAGE_TAG optional Existing sample documentation assumes that 'docker-compose' may be run directly in the first-network directory. Now that IMAGE_TAG is parameterized, this creates failures if the var is unset. This CR adds a default (which may be overridden via the environment) so that this breakage does not occur. Change-Id: Ibea4a3b3f823dfd3fc0e1eca3ab824b8230a8a41 Signed-off-by: Jason Yellick --- first-network/.env | 1 + 1 file changed, 1 insertion(+) diff --git a/first-network/.env b/first-network/.env index 4fd2ee0d..a6665fed 100644 --- a/first-network/.env +++ b/first-network/.env @@ -1 +1,2 @@ COMPOSE_PROJECT_NAME=net +IMAGE_TAG=latest