18 lines
414 B
YAML
18 lines
414 B
YAML
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
version: '2'
|
|
services:
|
|
cli:
|
|
container_name: cli
|
|
image: hyperledger/fabric-tools:1.4
|
|
tty: true
|
|
stdin_open: true
|
|
working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer
|
|
command: /bin/bash
|
|
volumes:
|
|
- /var/run/:/host/var/run/
|
|
- ./chaincode/:/opt/gopath/src/github.com/chaincode
|