-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FAB-4255] Fix "make release" failed
It seems like that required file related to "release/%/install" target in Makefile was deleted by FAB-4109. restore template, update Makefile, add .gitignore remove whitespace Change-Id: Ibec1ad9a2d788396fd03aa82058fb9868e28df8f Signed-off-by: Nao Nishijima <[email protected]> Signed-off-by: Christopher Ferris <[email protected]>
- Loading branch information
1 parent
6188bbb
commit 7e0b9a3
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash -eu | ||
|
||
# This script pulls docker images from the Dockerhub hyperledger repositories | ||
|
||
# set the default Docker namespace and tag | ||
DOCKER_NS=_NS_ | ||
ARCH=_ARCH_ | ||
VERSION=_VERSION_ | ||
BASE_DOCKER_TAG=_BASE_DOCKER_TAG_ | ||
|
||
# set of Hyperledger Fabric images | ||
FABRIC_IMAGES=(fabric-peer fabric-orderer fabric-ccenv fabric-javaenv fabric-kafka fabric-zookeeper \ | ||
fabric-couchdb fabric-tools) | ||
|
||
for image in ${FABRIC_IMAGES[@]}; do | ||
echo "Pulling ${DOCKER_NS}/$image:${ARCH}-${VERSION}" | ||
docker pull ${DOCKER_NS}/$image:${ARCH}-${VERSION} | ||
done | ||
|
||
echo "Pulling ${DOCKER_NS}/fabric-baseos:${BASE_DOCKER_TAG}" | ||
docker pull ${DOCKER_NS}/fabric-baseos:${BASE_DOCKER_TAG} |