fix rpc connection

This commit is contained in:
nicolas.dorier 2021-01-28 17:30:52 +09:00
parent 22045e797a
commit feff41bf14
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE
2 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/bin/bash
docker exec btcpayserver_bitcoind bitcoin-cli -datadir="/data" -rpcport=43782 "$@"
docker exec btcpayserver_bitcoind bitcoin-cli -datadir="/data" "$@"

View File

@ -9,6 +9,7 @@ services:
BITCOIN_NETWORK: ${NBITCOIN_NETWORK:-regtest}
BITCOIN_WALLETDIR: "/walletdata"
BITCOIN_EXTRA_ARGS: |
rpcport=43782
rpcbind=0.0.0.0:43782
rpcallowip=0.0.0.0/0
port=39388