mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-18 07:55:10 +00:00
This CR adds two new yaml files that are specific to a new organization - Org3 - that will join the existing application channel. Also adds a separate docker-compose that is specific to the new org - Org3. Update byfn.sh to remove the Org3 artifacts Reliant on CR - 15323 Change-Id: I22a08be6f8472f981c4231491b7cae56906b71dd Signed-off-by: Nick Gaski <ngaski@us.ibm.com>
31 lines
1 KiB
YAML
31 lines
1 KiB
YAML
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
---
|
|
################################################################################
|
|
#
|
|
# Section: Organizations
|
|
#
|
|
# - This section defines the different organizational identities which will
|
|
# be referenced later in the configuration.
|
|
#
|
|
################################################################################
|
|
Organizations:
|
|
- &Org3
|
|
# DefaultOrg defines the organization which is used in the sampleconfig
|
|
# of the fabric.git development environment
|
|
Name: Org3MSP
|
|
|
|
# ID to load the MSP definition as
|
|
ID: Org3MSP
|
|
|
|
MSPDir: crypto-config/peerOrganizations/org3.example.com/msp
|
|
|
|
AnchorPeers:
|
|
# AnchorPeers defines the location of peers which can be used
|
|
# for cross org gossip communication. Note, this value is only
|
|
# encoded in the genesis block in the Application section context
|
|
- Host: peer0.org3.example.com
|
|
Port: 7051
|