Skip to content

Commit 01ae6d1

Browse files
committed
FAB-5230: update bootstrap script
Add tools image name to the list of docker images and update curl command to pick the correct fabric-binaries Change-Id: I5e520f27edc4ce1c64dcb771e9dc5dc04b735843 Signed-off-by: rameshthoomu <[email protected]>
1 parent 4709b33 commit 01ae6d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/bootstrap-1.0.0.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ MARCH=`uname -m`
1212

1313
dockerFabricPull() {
1414
local FABRIC_TAG=$1
15-
for IMAGES in peer orderer couchdb ccenv javaenv kafka zookeeper; do
15+
for IMAGES in peer orderer couchdb ccenv javaenv kafka zookeeper tools; do
1616
echo "==> FABRIC IMAGE: $IMAGES"
1717
echo
1818
docker pull hyperledger/fabric-$IMAGES:$FABRIC_TAG
@@ -32,7 +32,7 @@ dockerCaPull() {
3232
: ${FABRIC_TAG:="$MARCH-$VERSION"}
3333

3434
echo "===> Downloading platform binaries"
35-
curl https://nexus.hyperledger.org/content/repositories/releases/org/hyperledger/fabric/fabric-binary/${ARCH}-${VERSION}/fabric-binary-${ARCH}-${VERSION}.tar.gz | tar xz
35+
curl https://nexus.hyperledger.org/content/repositories/releases/org/hyperledger/fabric/hyperledger-fabric/${ARCH}-${VERSION}/hyperledger-fabric-${ARCH}-${VERSION}.tar.gz | tar xz
3636

3737
echo "===> Pulling fabric Images"
3838
dockerFabricPull ${FABRIC_TAG}

0 commit comments

Comments
 (0)