fabric-samples/test-network/addOrg6/docker/docker-compose-ca-org6.yaml
Kurt Seifried 013162df0d
ORG6 setup
2021-03-16 20:49:00 -06:00

27 lines
639 B
YAML

# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
version: '2'
networks:
test:
name: fabric_test
services:
ca_org6:
image: hyperledger/fabric-ca:latest
labels:
service: hyperledger-fabric
environment:
- FABRIC_CA_HOME=/etc/hyperledger/fabric-ca-server
- FABRIC_CA_SERVER_CA_NAME=ca-org6
- FABRIC_CA_SERVER_TLS_ENABLED=true
- FABRIC_CA_SERVER_PORT=17054
ports:
- "17054:17054"
command: sh -c 'fabric-ca-server start -b admin:adminpw -d'
volumes:
- ../fabric-ca/org6:/etc/hyperledger/fabric-ca-server
container_name: ca_org6