Home | 简体中文 | 繁体中文 | 杂文 | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | Github | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

18.6. e2e_cli

运行这个命令请慎重,这里是为了不被先前的实验产生的容易所影响,清理 Docker 虚拟机,

		
[root@localhost ~]# docker rmi -f $(docker images -q)
		
		

克隆源码,因为我们需要 example 目录中的文件,所以将 https://github.com/hyperledger/fabric.git 源码克隆到本地。

		
[root@localhost ~]# go get github.com/hyperledger/fabric
		
[root@localhost ~]# git clone --depth=1 https://github.com/hyperledger/fabric.git
[root@localhost ~]# cd fabric
[root@localhost fabric]# make release
[root@localhost ~]# cd ~/fabric/examples/e2e_cli/
[root@localhost e2e_cli]#