-
-
Save jkalwar/cfb775546f7cb265e42f153381e4cbc6 to your computer and use it in GitHub Desktop.
docker-compose-couch.yaml
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
# Copyright IBM Corp. All Rights Reserved. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
version: '2.4' | |
networks: | |
test: | |
name: fabric_test | |
services: | |
couchdb0: | |
container_name: couchdb0 | |
image: couchdb:3.1.1 | |
labels: | |
service: hyperledger-fabric | |
# 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=admin | |
- COUCHDB_PASSWORD=adminpw | |
# Comment/Uncomment the port mapping if you want to hide/expose the CouchDB service, | |
# for example map it to utilize Fauxton User Interface in dev environments. | |
volumes: | |
- ../data/couchdb-peer0.org1.example.com:/opt/couchdb/data | |
ports: | |
- "5984:5984" | |
networks: | |
- test | |
peer0.org1.example.com: | |
environment: | |
- CORE_LEDGER_STATE_STATEDATABASE=CouchDB | |
- CORE_LEDGER_STATE_COUCHDBCONFIG_COUCHDBADDRESS=couchdb0: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=admin | |
- CORE_LEDGER_STATE_COUCHDBCONFIG_PASSWORD=adminpw | |
depends_on: | |
- couchdb0 | |
couchdb1: | |
container_name: couchdb1 | |
image: couchdb:3.1.1 | |
labels: | |
service: hyperledger-fabric | |
# 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=admin | |
- COUCHDB_PASSWORD=adminpw | |
# Comment/Uncomment the port mapping if you want to hide/expose the CouchDB service, | |
# for example map it to utilize Fauxton User Interface in dev environments. | |
volumes: | |
- ../data/couchdb-peer0.org2.example.com:/opt/couchdb/data | |
ports: | |
- "7984:5984" | |
networks: | |
- test | |
peer0.org2.example.com: | |
environment: | |
- CORE_LEDGER_STATE_STATEDATABASE=CouchDB | |
- CORE_LEDGER_STATE_COUCHDBCONFIG_COUCHDBADDRESS=couchdb1: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=admin | |
- CORE_LEDGER_STATE_COUCHDBCONFIG_PASSWORD=adminpw | |
depends_on: | |
- couchdb1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment