Created
February 9, 2020 13:01
-
-
Save dexhunter/d0244363613bc6265984114b2cf27421 to your computer and use it in GitHub Desktop.
config with counchdb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
orderer: | |
container_name: orderer | |
image: hyperledger/fabric-orderer | |
environment: | |
- FABRIC_LOGGING_SPEC=debug | |
- ORDERER_GENERAL_LISTENADDRESS=orderer | |
- ORDERER_GENERAL_BOOTSTRAPMETHOD=file | |
- ORDERER_GENERAL_BOOTSTRAPFILE=orderer.block | |
- ORDERER_GENERAL_LOCALMSPID=DEFAULT | |
- ORDERER_GENERAL_LOCALMSPDIR=/etc/hyperledger/msp | |
- GRPC_TRACE=all=true, | |
- GRPC_VERBOSITY=debug | |
working_dir: /opt/gopath/src/github.com/hyperledger/fabric | |
command: orderer | |
volumes: | |
- ./msp:/etc/hyperledger/msp | |
- ./orderer.block:/etc/hyperledger/fabric/orderer.block | |
ports: | |
- 7050:7050 | |
peer: | |
container_name: peer | |
image: hyperledger/fabric-peer | |
environment: | |
- CORE_PEER_ID=peer | |
- CORE_PEER_ADDRESS=peer:7051 | |
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer:7051 | |
- CORE_PEER_LOCALMSPID=DEFAULT | |
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock | |
- FABRIC_LOGGING_SPEC=DEBUG | |
- CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/msp | |
- CORE_LEDGER_STATE_STATEDATABASE=CouchDB | |
- CORE_LEDGER_STATE_COUCHDBCONFIG_COUCHDBADDRESS=couchdb:5984 | |
# The CORE_LEDGER_STATE_COUCHDBCONFIG_USERNAME and CORE_LEDGER_STATE_COUCHDBCONFIG_PASSWORD | |
# provide the credentials for ledger to connect to CouchDB. The username and password must | |
# match the username and password set for the associated CouchDB. | |
- CORE_LEDGER_STATE_COUCHDBCONFIG_USERNAME= | |
- CORE_LEDGER_STATE_COUCHDBCONFIG_PASSWORD= | |
volumes: | |
- /var/run/:/host/var/run/ | |
- ./msp:/etc/hyperledger/msp | |
working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer | |
command: peer node start --peer-chaincodedev=true | |
ports: | |
- 7051:7051 | |
- 7053:7053 | |
depends_on: | |
- orderer | |
- counchdb | |
couchdb: | |
container_name: couchdb | |
image: couchdb:2.3 | |
# Populate the COUCHDB_USER and COUCHDB_PASSWORD to set an admin user and password | |
# for CouchDB. This will prevent CouchDB from operating in an "Admin Party" mode. | |
environment: | |
- COUCHDB_USER= | |
- COUCHDB_PASSWORD= | |
ports: | |
- 5984:5984 | |
networks: | |
- basic | |
cli: | |
container_name: cli | |
image: hyperledger/fabric-tools | |
tty: true | |
environment: | |
- GOPATH=/opt/gopath | |
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock | |
- FABRIC_LOGGING_SPEC=DEBUG | |
- CORE_PEER_ID=cli | |
- CORE_PEER_ADDRESS=peer:7051 | |
- CORE_PEER_LOCALMSPID=DEFAULT | |
- CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/msp | |
working_dir: /opt/gopath/src/chaincodedev | |
command: /bin/bash -c './script.sh' | |
volumes: | |
- /var/run/:/host/var/run/ | |
- ./msp:/etc/hyperledger/msp | |
- ./../chaincode:/opt/gopath/src/chaincodedev/chaincode | |
- ./:/opt/gopath/src/chaincodedev/ | |
depends_on: | |
- orderer | |
- peer | |
chaincode: | |
container_name: chaincode | |
image: hyperledger/fabric-ccenv | |
tty: true | |
environment: | |
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock | |
- FABRIC_LOGGING_SPEC=DEBUG | |
- CORE_PEER_ID=abstore | |
- CORE_PEER_ADDRESS=peer:7051 | |
- CORE_PEER_LOCALMSPID=DEFAULT | |
- CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/msp | |
working_dir: /opt/gopath/src/chaincode | |
command: /bin/sh -c 'sleep 6000000' | |
volumes: | |
- /var/run/:/host/var/run/ | |
- ./msp:/etc/hyperledger/msp | |
- ./../chaincode:/opt/gopath/src/chaincode | |
depends_on: | |
- orderer | |
- peer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment