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

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