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 @@ -41,7 +41,7 @@ variables:
4141 - name : PUSH_VERSION
4242 value : stable
4343 - name : FABRIC_VERSION
44- value : 2.1
44+ value : latest
4545
4646pool :
4747 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