123456789101112131415161718192021222324 |
- version: '2'
- services:
- peer-base:
- image: hyperledger/fabric-peer:x86_64-1.0.5
- environment:
- #- CORE_PEER_ADDRESSAUTODETECT=true
- - CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock
- # the following setting starts chaincode containers on the same
- # bridge network as the peers
- # https://docs.docker.com/compose/networking/
- - CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=midea_default
- #- CORE_LOGGING_LEVEL=ERROR
- - CORE_LOGGING_LEVEL=DEBUG
- - CORE_PEER_TLS_ENABLED=true
- - CORE_NEXT=true
- - CORE_PEER_ENDORSER_ENABLED=true
- - CORE_PEER_GOSSIP_USELEADERELECTION=true
- - CORE_PEER_GOSSIP_ORGLEADER=false
- # The following setting skips the gossip handshake since we are
- # are not doing mutual TLS
- - CORE_PEER_GOSSIP_SKIPHANDSHAKE=true
- - CORE_PEER_PROFILE_ENABLED=true
- working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer
- command: peer node start --peer-defaultchain=false
|