mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
[FAB-5260] Update balance-transfer sample to v1.0.0
Change-Id: Ie6738415d8cca650c609fe72bb6195b36751b3d6 Signed-off-by: Jim Zhang <jzhang@us.ibm.com>
This commit is contained in:
parent
6899719cbb
commit
8f01c7f0e2
3 changed files with 7 additions and 7 deletions
|
|
@ -6,7 +6,7 @@
|
|||
version: '2'
|
||||
services:
|
||||
peer-base:
|
||||
image: hyperledger/fabric-peer:x86_64-1.0.0-rc1
|
||||
image: hyperledger/fabric-peer:x86_64-1.0.0
|
||||
environment:
|
||||
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock
|
||||
# the following setting starts chaincode containers on the same
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ version: '2'
|
|||
services:
|
||||
|
||||
ca.org1.example.com:
|
||||
image: hyperledger/fabric-ca:x86_64-1.0.0-rc1
|
||||
image: hyperledger/fabric-ca:x86_64-1.0.0
|
||||
environment:
|
||||
- FABRIC_CA_HOME=/etc/hyperledger/fabric-ca-server
|
||||
- FABRIC_CA_SERVER_CA_CERTFILE=/etc/hyperledger/fabric-ca-server-config/ca.org1.example.com-cert.pem
|
||||
|
|
@ -24,7 +24,7 @@ services:
|
|||
container_name: ca_peerOrg1
|
||||
|
||||
ca.org2.example.com:
|
||||
image: hyperledger/fabric-ca:x86_64-1.0.0-rc1
|
||||
image: hyperledger/fabric-ca:x86_64-1.0.0
|
||||
environment:
|
||||
- FABRIC_CA_HOME=/etc/hyperledger/fabric-ca-server
|
||||
- FABRIC_CA_SERVER_CA_CERTFILE=/etc/hyperledger/fabric-ca-server-config/ca.org2.example.com-cert.pem
|
||||
|
|
@ -41,7 +41,7 @@ services:
|
|||
|
||||
orderer.example.com:
|
||||
container_name: orderer.example.com
|
||||
image: hyperledger/fabric-orderer:x86_64-1.0.0-rc1
|
||||
image: hyperledger/fabric-orderer:x86_64-1.0.0
|
||||
environment:
|
||||
- ORDERER_GENERAL_LOGLEVEL=debug
|
||||
- ORDERER_GENERAL_LISTENADDRESS=0.0.0.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "balance-transfer",
|
||||
"version": "1.0.0-snapshot",
|
||||
"version": "1.0.0",
|
||||
"description": "A balance-transfer example node program to demonstrate using node.js SDK APIs",
|
||||
"main": "app/app.js",
|
||||
"keywords": [
|
||||
|
|
@ -21,8 +21,8 @@
|
|||
"express-bearer-token": "^2.1.0",
|
||||
"express-jwt": "^5.1.0",
|
||||
"express-session": "^1.15.2",
|
||||
"fabric-ca-client": ">=1.0.0-rc1 <1.0.0-rc1.10",
|
||||
"fabric-client": ">=1.0.0-rc1 <1.0.0-rc1.10",
|
||||
"fabric-ca-client": "^1.0.0",
|
||||
"fabric-client": "^1.0.0",
|
||||
"fs-extra": "^2.0.0",
|
||||
"jsonwebtoken": "^7.3.0",
|
||||
"log4js": "^0.6.38"
|
||||
|
|
|
|||
Loading…
Reference in a new issue