mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Augment the fabric-samples first-network sample to include an option to choose etcd/raft as consensus-type. Extend the -o flag so that it allows users to choose between the solo, kafka, or etcdraft consensus-type for the ordering service. Use three orderer nodes. Change-Id: Ibc4c3564220466aef0a87baee4a2d594e5554a62 Signed-off-by: Yoav Tock <tock@il.ibm.com>
110 lines
4.5 KiB
YAML
110 lines
4.5 KiB
YAML
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
version: '2'
|
|
|
|
services:
|
|
|
|
orderer.example.com:
|
|
container_name: orderer.example.com
|
|
extends:
|
|
file: peer-base.yaml
|
|
service: orderer-base
|
|
volumes:
|
|
- ../channel-artifacts/genesis.block:/var/hyperledger/orderer/orderer.genesis.block
|
|
- ../crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp:/var/hyperledger/orderer/msp
|
|
- ../crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/:/var/hyperledger/orderer/tls
|
|
- orderer.example.com:/var/hyperledger/production/orderer
|
|
ports:
|
|
- 7050:7050
|
|
|
|
peer0.org1.example.com:
|
|
container_name: peer0.org1.example.com
|
|
extends:
|
|
file: peer-base.yaml
|
|
service: peer-base
|
|
environment:
|
|
- CORE_PEER_ID=peer0.org1.example.com
|
|
- CORE_PEER_ADDRESS=peer0.org1.example.com:7051
|
|
- CORE_PEER_LISTENADDRESS=0.0.0.0:7051
|
|
- CORE_PEER_CHAINCODEADDRESS=peer0.org1.example.com:7052
|
|
- CORE_PEER_CHAINCODELISTENADDRESS=0.0.0.0:7052
|
|
- CORE_PEER_GOSSIP_BOOTSTRAP=peer1.org1.example.com:8051
|
|
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org1.example.com:7051
|
|
- CORE_PEER_LOCALMSPID=Org1MSP
|
|
volumes:
|
|
- /var/run/:/host/var/run/
|
|
- ../crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp:/etc/hyperledger/fabric/msp
|
|
- ../crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls:/etc/hyperledger/fabric/tls
|
|
- peer0.org1.example.com:/var/hyperledger/production
|
|
ports:
|
|
- 7051:7051
|
|
|
|
peer1.org1.example.com:
|
|
container_name: peer1.org1.example.com
|
|
extends:
|
|
file: peer-base.yaml
|
|
service: peer-base
|
|
environment:
|
|
- CORE_PEER_ID=peer1.org1.example.com
|
|
- CORE_PEER_ADDRESS=peer1.org1.example.com:8051
|
|
- CORE_PEER_LISTENADDRESS=0.0.0.0:8051
|
|
- CORE_PEER_CHAINCODEADDRESS=peer1.org1.example.com:8052
|
|
- CORE_PEER_CHAINCODELISTENADDRESS=0.0.0.0:8052
|
|
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer1.org1.example.com:8051
|
|
- CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org1.example.com:7051
|
|
- CORE_PEER_LOCALMSPID=Org1MSP
|
|
volumes:
|
|
- /var/run/:/host/var/run/
|
|
- ../crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp:/etc/hyperledger/fabric/msp
|
|
- ../crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls:/etc/hyperledger/fabric/tls
|
|
- peer1.org1.example.com:/var/hyperledger/production
|
|
|
|
ports:
|
|
- 8051:8051
|
|
|
|
peer0.org2.example.com:
|
|
container_name: peer0.org2.example.com
|
|
extends:
|
|
file: peer-base.yaml
|
|
service: peer-base
|
|
environment:
|
|
- CORE_PEER_ID=peer0.org2.example.com
|
|
- CORE_PEER_ADDRESS=peer0.org2.example.com:9051
|
|
- CORE_PEER_LISTENADDRESS=0.0.0.0:9051
|
|
- CORE_PEER_CHAINCODEADDRESS=peer0.org2.example.com:9052
|
|
- CORE_PEER_CHAINCODELISTENADDRESS=0.0.0.0:9052
|
|
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org2.example.com:9051
|
|
- CORE_PEER_GOSSIP_BOOTSTRAP=peer1.org2.example.com:10051
|
|
- CORE_PEER_LOCALMSPID=Org2MSP
|
|
volumes:
|
|
- /var/run/:/host/var/run/
|
|
- ../crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp:/etc/hyperledger/fabric/msp
|
|
- ../crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls:/etc/hyperledger/fabric/tls
|
|
- peer0.org2.example.com:/var/hyperledger/production
|
|
ports:
|
|
- 9051:9051
|
|
|
|
peer1.org2.example.com:
|
|
container_name: peer1.org2.example.com
|
|
extends:
|
|
file: peer-base.yaml
|
|
service: peer-base
|
|
environment:
|
|
- CORE_PEER_ID=peer1.org2.example.com
|
|
- CORE_PEER_ADDRESS=peer1.org2.example.com:10051
|
|
- CORE_PEER_LISTENADDRESS=0.0.0.0:10051
|
|
- CORE_PEER_CHAINCODEADDRESS=peer1.org2.example.com:10052
|
|
- CORE_PEER_CHAINCODELISTENADDRESS=0.0.0.0:10052
|
|
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer1.org2.example.com:10051
|
|
- CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org2.example.com:9051
|
|
- CORE_PEER_LOCALMSPID=Org2MSP
|
|
volumes:
|
|
- /var/run/:/host/var/run/
|
|
- ../crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp:/etc/hyperledger/fabric/msp
|
|
- ../crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls:/etc/hyperledger/fabric/tls
|
|
- peer1.org2.example.com:/var/hyperledger/production
|
|
ports:
|
|
- 10051:10051
|