12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- version: '2'
- services:
- peer1.org2.example.com:
- image: hyperledger/fabric-peer:x86_64-1.0.5
- restart: always
- container_name: peer1.org2.example.com
- hostname: peer1.org2.example.com
- environment:
- - CORE_PEER_ID=peer1.org2.example.com
- - CORE_PEER_ADDRESS=peer1.org2.example.com:7051
- - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer1.org2.example.com:7051
- - CORE_PEER_CHAINCODELISTENADDRESS=peer1.org2.example.com:7052
- - CORE_PEER_GOSSIP_BOOTSTRAP=peer1.org2.example.com:7051
- - CORE_PEER_LOCALMSPID=Org2MSP
- - CORE_PEER_ADDRESSAUTODETECT=false
- - CORE_LOGGING_LEVEL=DEBUG
- - CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- - CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=v105_default # uncomment this to use specific network
- - CORE_PEER_GOSSIP_USELEADERELECTION=true
- - CORE_PEER_GOSSIP_ORGLEADER=false # this node is the group leader, default to false
- - CORE_PEER_PROFILE_ENABLED=false
- - CORE_PEER_TLS_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
- - CORE_CHIANCODE_LOGGING_LEVEL=DEBUG
- - CORE_CHIANCODE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}
- expose:
- - "7050" # Rest
- - "7051" # Grpc
- - "7052" # Peer CLI
- - "7053" # Peer Event
- - "7054" # eCAP
- - "7055" # eCAA
- - "7056" # tCAP
- - "7057" # eCAA
- - "7058" # tlsCAP
- - "7059" # tlsCAA
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock
- - ./solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp:/etc/hyperledger/fabric/msp
- - ./solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls:/etc/hyperledger/fabric/tls
- ports:
- - 7051:7051
- - 7052:7052
- - 7053:7053
- extra_hosts:
- - "orderer.example.com:106.14.183.136"
- - "peer0.org1.example.com:139.196.88.181"
- - "peer1.org1.example.com:47.100.40.117"
- - "peer0.org2.example.com:47.100.42.120"
- couchdb:
- container_name: couchdb
- image: hyperledger/fabric-couchdb:x86_64-1.0.5
- ports:
- - 5984:5984
- environment:
- DB_URL: http://localhost:5984/member_db
|