mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
49 lines
No EOL
1.7 KiB
YAML
49 lines
No EOL
1.7 KiB
YAML
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
volumes:
|
|
peer0.org3.example.com:
|
|
|
|
networks:
|
|
test:
|
|
name: fabric_test
|
|
|
|
services:
|
|
|
|
peer0.org3.example.com:
|
|
container_name: peer0.org3.example.com
|
|
image: hyperledger/fabric-peer:latest
|
|
labels:
|
|
service: hyperledger-fabric
|
|
environment:
|
|
- FABRIC_CFG_PATH=/etc/hyperledger/peercfg
|
|
#Generic peer variables
|
|
- FABRIC_LOGGING_SPEC=INFO
|
|
#- FABRIC_LOGGING_SPEC=DEBUG
|
|
- CORE_PEER_TLS_ENABLED=true
|
|
- CORE_PEER_PROFILE_ENABLED=true
|
|
- CORE_PEER_TLS_CERT_FILE=/etc/hyperledger/fabric/tls/server.crt
|
|
- CORE_PEER_TLS_KEY_FILE=/etc/hyperledger/fabric/tls/server.key
|
|
- CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/tls/ca.crt
|
|
# Peer specific variables
|
|
- CORE_PEER_ID=peer0.org3.example.com
|
|
- CORE_PEER_ADDRESS=peer0.org3.example.com:11051
|
|
- CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/fabric/msp
|
|
- CORE_PEER_LISTENADDRESS=0.0.0.0:11051
|
|
- CORE_PEER_CHAINCODEADDRESS=peer0.org3.example.com:11052
|
|
- CORE_PEER_CHAINCODELISTENADDRESS=0.0.0.0:11052
|
|
- CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org3.example.com:11051
|
|
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org3.example.com:11051
|
|
- CORE_PEER_LOCALMSPID=Org3MSP
|
|
volumes:
|
|
- ../peercfg:/etc/hyperledger/peercfg
|
|
- ../../organizations/peerOrganizations/org3.example.com/peers/peer0.org3.example.com:/etc/hyperledger/fabric
|
|
- peer0.org3.example.com:/var/hyperledger/production
|
|
working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer
|
|
command: peer node start
|
|
ports:
|
|
- 11051:11051
|
|
networks:
|
|
- test |