Bitcoin Core Server on Debian Linux
393
Bitcoin Core
Small docker container that start Bitcoin Core behind TOR.
Using this method you can easily spin up a bitcoin node to support the blockchain.
Create network
docker network create switch
Install TOR container
docker run -d \
--hostname tor \
--name tor-node \
--network switch \
idjansazov/tor:0.4.8.16 \
sleep infinity
Install Bitcoin Core container:
docker run -d \
--hostname bitcoin-core \
--name bitcoin-node \
--network switch \
idjansazov/bitcoin-core:29.0 \
sleep infinity
Start service:
docker exec -it bitcoin-node bitcoind
docker exec -it tor-node service tor start
Open bash in container:
docker exec -it bitcoin-node bash
*Change the .onion address at the bitcoin core container in /root/.bitcoin/bitcoin.conf
Content type
Image
Digest
sha256:8161d9e1d…
Size
38 MB
Last updated
about 1 year ago
docker pull idjansazov/bitcoin-core:29.0