Skip to content

Commit

Permalink
[FAB-8518] Not all compose files have IMAGE_TAG
Browse files Browse the repository at this point in the history
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 <jyellick@us.ibm.com>
  • Loading branch information
Jason Yellick committed Feb 25, 2018
1 parent 4f2cd8d commit c93268f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions first-network/docker-compose-couch-org3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion first-network/docker-compose-org3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c93268f

Please sign in to comment.