1. 下载Hyperldger Fabric 源码
### 1. 在 GOPATH目录下 ,创建源代码目录,下载源代码。操作如下:
mkdir -p $GOPATH/src/github.com/hyperledger
### 2. 切换到目录,下载 Hyperldger Fabric 源代码。操作如下:
cd $GOPATH/src/github.com/hyperledger
git clone https://github.com/hyperledger/fabric.git
2. 修改 bootstrap.sh
### 1. 切换到指定目录:
cd xxx/src/github.com/hyperledger/fabric/scripts/
### 2. 修改脚本 bootstrap.sh
### DOCKER=true *************************************** 修改为true
### SAMPLES=false *************************************** 修改为false
### BINARIES=false *************************************** 修改为false
### DOCKER :是否下载镜像
### SAMPLES:是否下载 fabric-simples案例
### BINARIES: 是否下载 bin 工具
### VERSION=2.0.1 -- fabric版本,你需要哪个版本就要修改哪个版本
### CA_VERSION=1.4.6 --ca 的版本,如果没有用到略过
3. 启动 bootstrap.sh 拉取脚本
./bootstrap.sh
4. 查看镜像
docker images