Skip to content

Instantly share code, notes, and snippets.

@apemon
Last active March 12, 2018 13:49
Show Gist options
  • Save apemon/28d193d2abb445fa5d4bd6a5784a3d68 to your computer and use it in GitHub Desktop.
Save apemon/28d193d2abb445fa5d4bd6a5784a3d68 to your computer and use it in GitHub Desktop.

Clone dougvk repository to ~

git clone https://github.com/dougvk/lightning-node.git

Build the bitcoind docker image

cd lightning-node
docker build . -t dougvk/bitcoind

Run the bitcoind node (you may need to create symbolic link to map volume)

mkdir -p /scratch/bitcoin/testnet/bitcoind
docker run --name bitcoind_testnet -d -v /scratch/bitcoin/testnet/bitcoind:/data -p 18333:18333 -p 9735:9735 dougvk/bitcoind:latest bitcoind -testnet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment