[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:
Jorge Montejo 2024-06-20 20:56:26 +02:00 committed by GitHub
parent adcc2c9b5b
commit a51dfd050d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -7,7 +7,7 @@
"port": 8333,
"id": "bitcoind",
"description": "Bitcoin core node",
"tipi_version": 4,
"tipi_version": 5,
"version": "27.0",
"categories": [
"finance"

View File

@ -16,8 +16,10 @@ services:
command: >-
-dbcache=${BITCOIND_DB_CACHE:-450}
-maxmempool=${BITCOIND_MAX_MEMPOOL:-300}
-listen=${BITCOIND_LISTEN:-0}
-listen=${BITCOIND_LISTEN:-1}
-server=${BITCOIND_SERVER:-1}
-rpcallowip=0.0.0.0/0
-rpcbind=0.0.0.0
-prune=${BITCOIND_PRUNING:-0}
-maxconnections=${BITCOIND_MAXPEERS:-125}
-txindex=${BITCOIND_TXINDEX:-1}