From a51dfd050da167f5792590e518a91ec50f9c68ae Mon Sep 17 00:00:00 2001 From: Jorge Montejo Date: Thu, 20 Jun 2024 20:56:26 +0200 Subject: [PATCH] [Bitcoind] Add rpc bind and allow for docker setup (#3768) * Update docker-compose.yml * update version in config.json * listen p2p conections by default --- apps/bitcoind/config.json | 2 +- apps/bitcoind/docker-compose.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/bitcoind/config.json b/apps/bitcoind/config.json index 411ca6c5..111bcc83 100644 --- a/apps/bitcoind/config.json +++ b/apps/bitcoind/config.json @@ -7,7 +7,7 @@ "port": 8333, "id": "bitcoind", "description": "Bitcoin core node", - "tipi_version": 4, + "tipi_version": 5, "version": "27.0", "categories": [ "finance" diff --git a/apps/bitcoind/docker-compose.yml b/apps/bitcoind/docker-compose.yml index 1f033759..708da16f 100644 --- a/apps/bitcoind/docker-compose.yml +++ b/apps/bitcoind/docker-compose.yml @@ -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}