version: '2' services: ca: container_name: ca image: hyperledger/fabric-ca environment: - FABRIC_CA_HOME=/etc/hyperledger/fabric-ca-server ports: - 7054:7054 command: sh -c 'fabric-ca-server start --ca.certfile /etc/hyperledger/fabric-ca-server-config/peerOrg1-cert.pem --ca.keyfile /etc/hyperledger/fabric-ca-server-config/d8a5b3cac1b821f6e4b487ceaf1fd239cdcfc310894150908b90f05e9179556a_sk -b admin:adminpw' -d volumes: - ./crypto-config/peerOrganizations/midea/ca:/etc/hyperledger/fabric-ca-server-config couchdb: container_name: couchdb #image: couchdb image: hyperledger/fabric-couchdb ports: - 5984:5984 environment: COUCHDB_USER: admin COUCHDB_PASSWORD: password DB_URL: http://localhost:5984/member_db