ruimarinho / docker-bitcoin-core

A bitcoin-core docker image
https://hub.docker.com/r/ruimarinho/bitcoin-core/
MIT License
365 stars 209 forks source link

fix: Example for Exposing Ports needs -rpcbind #85

Closed 0xB10C closed 4 years ago

0xB10C commented 4 years ago

The example in the README section Exposing Ports is out dated. The release notes for Bitcoin Core v0.18.0 state:

The rpcallowip option can no longer be used to automatically listen on all network interfaces. Instead, the rpcbind parameter must be used to specify the IP addresses to listen on. [...]

This PR adds -rpcbind=0.0.0.0 to bind on all interfaces of the container in the example.

ruimarinho commented 4 years ago

Thanks @0xB10C!