docker: update docker instructions to be aware of multi-chain config

This commit is contained in:
Olaoluwa Osuntokun 2017-05-02 20:49:40 -07:00
parent 99f6454677
commit d5af509435
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
2 changed files with 8 additions and 4 deletions

@ -109,6 +109,9 @@ bob$ lncli getinfo
"block_hash": "7d0bc86ea4151ed3b5be908ea883d2ac3073263537bcf8ca2dca4bec22e79d50",
"synced_to_chain": true,
"testnet": false
"chains": [
"bitcoin"
]
}
# Get the IP address of "Bob" node:

@ -47,10 +47,11 @@ BITCOIN_NETWORK=$(set_default "$BITCOIN_NETWORK" "simnet")
lnd \
--datadir="/data" \
--logdir="/data" \
"--$BITCOIN_NETWORK" \
--btcdhost="btcd" \
--rpccert="/rpc/rpc.cert" \
--rpcuser="$RPCUSER" \
--rpcpass="$RPCPASS" \
--bitcoin.active \
"--bitcoin.$BITCOIN_NETWORK" \
--bitcoin.rpchost="btcd" \
--bitcoin.rpcuser="$RPCUSER" \
--bitcoin.rpcpass="$RPCPASS" \
--debuglevel="$DEBUG" \
"$@"