[Bitcoind] Add rpc bind and allow for docker setup (#3768)
* Update docker-compose.yml * update version in config.json * listen p2p conections by default
This commit is contained in:
parent
adcc2c9b5b
commit
a51dfd050d
|
@ -7,7 +7,7 @@
|
||||||
"port": 8333,
|
"port": 8333,
|
||||||
"id": "bitcoind",
|
"id": "bitcoind",
|
||||||
"description": "Bitcoin core node",
|
"description": "Bitcoin core node",
|
||||||
"tipi_version": 4,
|
"tipi_version": 5,
|
||||||
"version": "27.0",
|
"version": "27.0",
|
||||||
"categories": [
|
"categories": [
|
||||||
"finance"
|
"finance"
|
||||||
|
|
|
@ -16,8 +16,10 @@ services:
|
||||||
command: >-
|
command: >-
|
||||||
-dbcache=${BITCOIND_DB_CACHE:-450}
|
-dbcache=${BITCOIND_DB_CACHE:-450}
|
||||||
-maxmempool=${BITCOIND_MAX_MEMPOOL:-300}
|
-maxmempool=${BITCOIND_MAX_MEMPOOL:-300}
|
||||||
-listen=${BITCOIND_LISTEN:-0}
|
-listen=${BITCOIND_LISTEN:-1}
|
||||||
-server=${BITCOIND_SERVER:-1}
|
-server=${BITCOIND_SERVER:-1}
|
||||||
|
-rpcallowip=0.0.0.0/0
|
||||||
|
-rpcbind=0.0.0.0
|
||||||
-prune=${BITCOIND_PRUNING:-0}
|
-prune=${BITCOIND_PRUNING:-0}
|
||||||
-maxconnections=${BITCOIND_MAXPEERS:-125}
|
-maxconnections=${BITCOIND_MAXPEERS:-125}
|
||||||
-txindex=${BITCOIND_TXINDEX:-1}
|
-txindex=${BITCOIND_TXINDEX:-1}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user