github.com/simranvc/fabric-ca@v0.0.0-20191030094829-acc364294dde/docker-compose-orderer1.yaml (about)

     1  #
     2  # Copyright IBM Corp. All Rights Reserved.
     3  #
     4  # SPDX-License-Identifier: Apache-2.0
     5  #
     6  orderer1-ca:
     7     container_name: orderer1-ca
     8     image: hyperledger/fabric-ca
     9     command: /bin/bash -c 'fabric-ca-server start -d -b orderer1-ca-admin:orderer1-ca-adminpw --port 7055'
    10     environment:
    11        - FABRIC_CA_SERVER_HOME=/tmp/hyperledger/fabric-ca/crypto
    12        - FABRIC_CA_SERVER_TLS_ENABLED=true
    13        - FABRIC_CA_SERVER_CSR_CN=orderer1-ca
    14        - FABRIC_CA_SERVER_CSR_HOSTS=0.0.0.0
    15        - FABRIC_CA_SERVER_DEBUG=true
    16     volumes:
    17        - /home/simran/go/src/github.com/hyperledger/fabric-ca/tmp1/hyperledger/orderer1/ca:/tmp/hyperledger/fabric-ca
    18  
    19     ports:
    20        - 7055:7055
    21