mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-19 08:15:08 +00:00
[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 <jyellick@us.ibm.com>
This commit is contained in:
parent
4f2cd8d4ac
commit
c93268f3f1
2 changed files with 3 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue