This project provides several useful Docker-Compose script to help quickly bootup a Hyperledger Fabric network, and do simple testing with deploy, invoke and query transactions.
Currently we support Hyperledger Fabric all releases from v0.6 to latest v1.x.
If you're not familiar with Docker and Blockchain, can have a look at these books (in CN):
| Fabric Release | Description |
|---|---|
| Fabric Latest | latest fabric code, unstable. |
| Fabric v1.4.0 | stable fabric 1.4.0 release. |
| Fabric v1.3.0 | stable fabric 1.3.0 release. |
| Fabric v1.2.0 | stable fabric 1.2.0 release. |
| Fabric v1.1.0 | stable fabric 1.1.0 release. |
| Fabric v1.0.6 | fabric v1.0.6 release. |
| Fabric v1.0.0 | fabric v1.0.0 release. |
| Fabric v0.6.0 | fabric v0.6.0 release (too old, not recommend to use). |
$ export RELEASE=v1.4.0$ cd ${RELEASE}; make setup testMore details are releaved below.
Enter the subdir of specific version and setup, e.g.,
$ cd ${RELEASE} # select a fabric version
$ make setup download # Install docker/compose, and pull required imagesThe following command will run the entire process (start a fabric network, create channel, test chaincode and stop it.) pass-through.
$ make test # Test with default fabric solo modePrometheus dashboard listens at http://localhost:9090 to track the network statistics.
$ HLF_MODE=solo make test # Bootup a fabric network with solo mode
$ HLF_MODE=couchdb make test # Enable couchdb support, web UI is at `http://localhost:5984/_utils`
$ HLF_MODE=event make test # Enable eventhub listener
$ HLF_MODE=kafka make test # Bootup a fabric network with kafka mode
$ HLF_MODE=be make test # Start a blockchain-explorer to view network infoSee detailed steps
.env: docker images tags, used by those docker-compose files;scripts/variable.sh: docker images tags and project versions, used by scripts;
- Hyperledger Fabric project.