2016-04-15 16:45:57 +08:00
|
|
|
# This is the default base file to config env and command
|
|
|
|
# Notice that chaincode is executed inside docker in default net mode
|
|
|
|
# https://github.com/yeasy/docker-compose-files
|
|
|
|
|
2016-04-20 11:07:30 +08:00
|
|
|
# If you want enable consensus, just uncomment the
|
|
|
|
# CORE_PEER_VALIDATOR_CONSENSUE=obcpbft line
|
|
|
|
# See https://github.com/hyperledger/fabric/blob/master/docs/dev-setup/devnet-setup.md#using-consensus-plugin for more details.
|
2016-04-15 16:45:57 +08:00
|
|
|
vp:
|
|
|
|
image: yeasy/hyperledger-peer:latest
|
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
|
|
|
- CORE_PEER_ADDRESSAUTODETECT=true
|
2016-04-18 14:19:35 +08:00
|
|
|
- CORE_PEER_NETWORKID=dev
|
|
|
|
- CORE_LOGGING_LEVEL=warning
|
2016-04-20 11:07:30 +08:00
|
|
|
- CORE_PEER_VALIDATOR_CONSENSUS=obcpbft
|
2016-04-15 16:45:57 +08:00
|
|
|
expose:
|
|
|
|
- "30303"
|
|
|
|
- "30304"
|
|
|
|
- "31315"
|
|
|
|
volumes: # docker.sock is mapped as the default CORE_VM_ENDPOINT
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
command: fabric peer
|
|
|
|
|