mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-24 10:35:09 +00:00
9 lines
252 B
Bash
9 lines
252 B
Bash
#!/bin/bash
|
|
|
|
CORE_PEER_ADDRESS="$1"
|
|
CORE_PEER_TLS_ROOTCERT_FILE="$2"
|
|
CORE_PEER_TLS_CERT_FILE="$3"
|
|
CORE_PEER_TLS_KEY_FILE="$4"
|
|
|
|
# docker exec cli scripts/script.sh $CHANNEL_NAME $CLI_DELAY $LANGUAGE $CLI_TIMEOUT $VERBOSE $NO_CHAINCODE
|
|
peer channel list
|