File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
fabric-chaincode-integration-test Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ variables:
4040 - name : PUSH_VERSION
4141 value : stable
4242 - name : FABRIC_VERSION
43- value : 2.1
43+ value : latest
4444
4545pool :
4646 vmImage : " ubuntu-latest"
Original file line number Diff line number Diff line change 66#
77set -euo pipefail
88
9- version=${FABRIC_VERSION:- 2.3 }
9+ version=${FABRIC_VERSION:- latest }
1010artifactory_url=hyperledger-fabric.jfrog.io
1111
12- for image in peer orderer tools; do
13- artifactory_image=" ${artifactory_url} /fabric-${image} :amd64-${version} -stable "
12+ for image in peer orderer ca tools; do
13+ artifactory_image=" ${artifactory_url} /fabric-${image} :amd64-${version} "
1414 docker pull -q " ${artifactory_image} "
1515 docker tag " ${artifactory_image} " " hyperledger/fabric-${image} "
1616 docker rmi -f " ${artifactory_image} " > /dev/null
1717done
1818
1919docker pull -q hyperledger/fabric-couchdb
20- docker pull -q hyperledger/fabric-ca:1.4
21- docker tag hyperledger/fabric-ca:1.4 hyperledger/fabric-ca
22- docker rmi hyperledger/fabric-ca:1.4 > /dev/null
You can’t perform that action at this time.
0 commit comments