docker-compose-files/hyperledger_fabric/v0.6.0/noops/1-peer.yml

30 lines
750 B
YAML
Raw Normal View History

2016-06-18 15:55:38 +08:00
# This compose file will start a cluster with 4 hyperledger peer nodes
# vp0: validating node as root
# vp1: validating node as peer
# vp2: validating node as peer
# vp3: validating node as peer
# https://github.com/yeasy/docker-compose-files
version: '2'
services:
2016-06-18 15:55:38 +08:00
# validating node as the root
# vp0 will also be used for client interactive operations
2016-08-02 08:41:16 +08:00
# If you want to run fabric command on the host, then map 7051:7051 to host
# port, or use like `CORE_PEER_ADDRESS=172.17.0.2:7051` to specify peer addr.
vp0:
extends:
2016-12-08 16:03:52 +08:00
file: peer.yml
service: vp
hostname: vp0
environment:
- CORE_PEER_ID=vp0
ports:
- "7050:7050"
#- "7051:7051"
2016-06-18 15:55:38 +08:00
#networks:
# default:
# external:
# name: fabric_noops