File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,10 @@ services:
26
26
--admin '0.0.0.0' ${BOB_ADMIN_PORT} \
27
27
--admin-insecure-mode \
28
28
--log-level info \
29
- --genesis-url '${LEDGER_URL}/genesis'
30
- --label ${BOB_AGENT_NAME}" ,
29
+ --genesis-url '${LEDGER_URL}/genesis' \
30
+ --label ${BOB_AGENT_NAME} \
31
+ --wallet-name ${BOB_WALLET_NAME} \
32
+ --wallet-key ${BOB_WALLET_KEY}"
31
33
]
32
34
alice-agent :
33
35
image : bcgovimages/aries-cloudagent:py36-1.15-0_0.5.6
@@ -57,8 +59,10 @@ services:
57
59
--admin '0.0.0.0' ${ALICE_ADMIN_PORT} \
58
60
--admin-api-key ${ALICE_API_KEY} \
59
61
--log-level info \
60
- --genesis-url '${LEDGER_URL}/genesis'
61
- --label ${ALICE_AGENT_NAME}" ,
62
+ --genesis-url '${LEDGER_URL}/genesis' \
63
+ --label ${ALICE_AGENT_NAME} \
64
+ --wallet-name ${ALICE_WALLET_NAME} \
65
+ --wallet-key ${ALICE_WALLET_KEY}" ,
62
66
]
63
67
setup :
64
68
build :
Original file line number Diff line number Diff line change @@ -125,6 +125,8 @@ configureEnvironment() {
125
125
export BOB_AGENT_ENDPOINT=${BOB_AGENT_ENDPOINT:- http:// $DOCKERHOST : $BOB_HTTP_PORT }
126
126
export BOB_WALLET_SEED=" bob_seed_00000000000000000000000"
127
127
export BOB_JUPYTER_PORT=" 8889"
128
+ export BOB_WALLET_NAME=" Bob Wallet"
129
+ export BOB_WALLET_KEY=" bob_key_00000000000000000000000"
128
130
129
131
130
132
# alice-agent
@@ -136,6 +138,8 @@ configureEnvironment() {
136
138
export ALICE_AGENT_ENDPOINT=${ALICE_AGENT_ENDPOINT:- http:// $DOCKERHOST : $ALICE_HTTP_PORT }
137
139
export ALICE_WALLET_SEED=" alice_seed_000000000000000000000"
138
140
export ALICE_JUPYTER_PORT=" 8888"
141
+ export ALICE_WALLET_NAME=" Alice Wallet"
142
+ export ALICE_WALLET_KEY=" alice_key_00000000000000000000000"
139
143
140
144
}
141
145
You can’t perform that action at this time.
0 commit comments