From c93268f3f188255634cc19d941a8eefc66a44283 Mon Sep 17 00:00:00 2001 From: Jason Yellick Date: Sun, 25 Feb 2018 08:47:18 -0500 Subject: [PATCH] [FAB-8518] Not all compose files have IMAGE_TAG A number of the image lines in the compose files were skipped when the IMAGE_TAG option was added. This CR fixes them. Change-Id: I60ca932de47315f2c99368ac41ed6710aca96614 Signed-off-by: Jason Yellick --- first-network/docker-compose-couch-org3.yaml | 4 ++-- first-network/docker-compose-org3.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/first-network/docker-compose-couch-org3.yaml b/first-network/docker-compose-couch-org3.yaml index 03e57ac8d7..4208aa41a6 100644 --- a/first-network/docker-compose-couch-org3.yaml +++ b/first-network/docker-compose-couch-org3.yaml @@ -11,7 +11,7 @@ networks: services: couchdb4: container_name: couchdb4 - image: hyperledger/fabric-couchdb + image: hyperledger/fabric-couchdb:$IMAGE_TAG # Populate the COUCHDB_USER and COUCHDB_PASSWORD to set an admin user and password # for CouchDB. This will prevent CouchDB from operating in an "Admin Party" mode. environment: @@ -38,7 +38,7 @@ services: couchdb5: container_name: couchdb5 - image: hyperledger/fabric-couchdb + image: hyperledger/fabric-couchdb:$IMAGE_TAG # Populate the COUCHDB_USER and COUCHDB_PASSWORD to set an admin user and password # for CouchDB. This will prevent CouchDB from operating in an "Admin Party" mode. environment: diff --git a/first-network/docker-compose-org3.yaml b/first-network/docker-compose-org3.yaml index 26c7ba6496..f4b3ed2560 100644 --- a/first-network/docker-compose-org3.yaml +++ b/first-network/docker-compose-org3.yaml @@ -55,7 +55,7 @@ services: Org3cli: container_name: Org3cli - image: hyperledger/fabric-tools + image: hyperledger/fabric-tools:$IMAGE_TAG tty: true environment: - GOPATH=/opt/gopath