docker-compose-files/hyperledger_fabric/README.md

66 lines
2.1 KiB
Markdown
Raw Normal View History

2017-12-19 14:40:39 +08:00
# Hyperledger Fabric Playground
2016-07-23 17:09:42 +08:00
2017-01-04 14:54:05 +08:00
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.
2016-07-23 17:09:42 +08:00
2017-12-07 10:54:06 +08:00
Currently we support Hyperledger Fabric v0.6.x and v1.x.
2016-12-08 16:03:52 +08:00
2017-05-10 11:57:19 +08:00
If you're not familiar with Docker and Blockchain, can have a look at these books (in CN):
2016-12-08 17:20:35 +08:00
* [Docker Practice](https://github.com/yeasy/docker_practice)
* [Blockchain Guide](https://github.com/yeasy/blockchain_guide)
2017-12-19 14:40:39 +08:00
## Supported Fabric Releases
Fabric Release | Description
--- | ---
[Fabric v0.6.0](v0.6.0/) | stable with fabric v0.6.0 code.
[Fabric v1.0.0](v1.0.0/) | stable with fabric v1.0.0 code.
[Fabric v1.0.2](v1.0.2/) | deprecated, test fabric v1.0.2 code.
2018-02-27 12:51:06 +08:00
[Fabric v1.0.5](v1.0.5/) | deprecated, test fabric v1.0.5 code.
2018-03-05 13:53:21 +08:00
[Fabric v1.1.0-alpha](v1.1.0-alpha/) | deprecated, v1.1.0-alpha.
2018-02-27 12:51:06 +08:00
[Fabric v1.0.6](v1.0.6/) | latest stable fabric v1.0.6 code.
2018-03-05 13:53:21 +08:00
[Fabric v1.1.0-rc1](v1.1.0-rc1/) | latest fabric code with v1.1.0-rc1.
2017-12-19 14:40:39 +08:00
[Fabric Latest](latest/) | experimental with latest fabric code, unstable.
2016-09-14 16:58:02 +08:00
2017-11-02 10:19:05 +08:00
## Getting Started
2017-09-01 21:27:02 +08:00
2017-12-07 13:55:24 +08:00
### Pick up a fabric version
2017-12-06 22:30:57 +08:00
2017-12-07 13:55:24 +08:00
Enter the subdir of specific version, e.g.,
2017-12-06 22:30:57 +08:00
2017-11-02 10:19:05 +08:00
```bash
2018-02-27 12:51:06 +08:00
$ cd 1.0.6 # select a fabric version
2017-11-02 10:19:05 +08:00
```
2017-10-06 14:47:32 +08:00
2017-12-07 13:55:24 +08:00
### Quick Test
2017-11-02 10:19:05 +08:00
2017-12-07 13:55:24 +08:00
The following command will run the entire process (start a fabric network, create channel, test chaincode and stop it.) pass-through.
2017-10-06 14:47:32 +08:00
2017-12-07 13:55:24 +08:00
```bash
$ make setup # Install docker/compose, and pull required images
$ make test # Test with default fabric solo mode
```
### Test with more modes
```bash
2017-12-19 14:40:39 +08:00
$ 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`
2017-12-07 13:55:24 +08:00
$ HLF_MODE=event make test # Enable eventhub listener
2017-12-19 14:40:39 +08:00
$ HLF_MODE=kafka make test # Bootup a fabric network with kafka mode
$ HLF_MODE=be make test # Start a blockchain-explorer to view network info
2017-12-07 13:55:24 +08:00
```
2017-12-19 14:40:39 +08:00
## Detailed Steps
2017-12-07 13:55:24 +08:00
See [detailed steps](docs/steps.md)
2017-12-19 14:40:39 +08:00
## TODO
2017-12-07 13:55:24 +08:00
2017-12-19 14:40:39 +08:00
* Support boot up a fabric network with hyperledger composer
2017-12-07 13:55:24 +08:00
## Acknowledgement
2017-12-19 14:40:39 +08:00
2017-12-07 13:55:24 +08:00
* [Hyperledger Fabric](https://github.com/hyperledger/fabric/) project.