Go to file
2019-12-11 12:20:50 +07:00
.github Add donation details 2019-12-06 00:14:59 +07:00
.gitignore .gitignore vim cache 2019-12-05 04:25:14 +07:00
.travis.yml Don't build old versions that don't follow new filesystem pattern 2019-12-11 12:20:50 +07:00
Dockerfile Fail build if asset can't be fetched 2019-12-11 12:20:50 +07:00
LICENSE Initial commit 2019-11-08 11:50:19 +07:00
README.md Improve readme wording 2019-12-10 11:23:02 +07:00

docker-bitcoind

Build Status Image Layers Docker Pulls tippin.me

Run a full Bitcoin node with one command

A Docker configuration with sane defaults for running a full Bitcoin node.

Usage

docker --name bitcoind run -v $HOME/.bitcoin:/data/.bitcoin -p 8333:8333 lukechilds/bitcoind

JSON-RPC

To query bitcoind, execute bitcoin-cli from within the container:

docker exec -it bitcoind bitcoin-cli getnetworkinfo

To access JSON-RPC from other services you'll also need to expose port 8332. You probably only want this available to localhost:

docker --name bitcoind run -v $HOME/.bitcoin:/data/.bitcoin -p 8333:8333 -p 127.0.0.1:8332:8332 lukechilds/bitcoind

CLI Arguments

All CLI arguments are passed directly through to bitcoind.

You can use this to configure via CLI args without a config file:

docker --name bitcoind run -v $HOME/.bitcoin:/data/.bitcoin \
  -p 8333:8333 \
  -p 127.0.0.1:8332:8332 \
  lukechilds/bitcoind -rpcuser=jonsnow -rpcpassword=ikn0wnothin

Or just use the container like a bitcoind binary:

$ docker run lukechilds/bitcoind -version
Bitcoin Core Daemon version v0.18.1
Copyright (C) 2009-2019 The Bitcoin Core developers

Please contribute if you find Bitcoin Core useful. Visit
<https://bitcoincore.org> for further information about the software.
The source code is available from <https://github.com/bitcoin/bitcoin>.

This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
or <https://opensource.org/licenses/MIT>

This product includes software developed by the OpenSSL Project for use in the
OpenSSL Toolkit <https://www.openssl.org> and cryptographic software written by
Eric Young and UPnP software written by Thomas Bernard.

Version

Run a specific version of bitcoind if you want.

docker --name bitcoind run -v $HOME/.bitcoin:/data/.bitcoin -p 8333:8333 lukechilds/bitcoind:v0.18.1

Build

Build this image yourself by checking out this repo, cd ing into it and running:

docker build -t lukechilds/bitcoind .

License

MIT © Luke Childs