You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
jamaljsr 4b36ce9e5f feat(bitcoind): add bitcoin-core dependency to project 5 years ago
..
bitcoind feat(bitcoind): add bitcoin-core dependency to project 5 years ago
lnd feat(bitcoind): add bitcoin-core dependency to project 5 years ago
README.md docs(docker): documentation for images on docker hub (#75) 5 years ago

README.md

Docker Images

The Dockerfiles used to build the images that the Polar app needs to spin up nodes quickly across multiple operating systems.

Warning: These images are not hardened and shouldn't be used to store real bitcoin. These images are intended solely to be used in simnet/regtest environments

Bitcoin Core

Tags

Building the image

$ cd bitcoind
$ docker build --build-arg BITCOIN_VERSION=<version> -t polarlightning/bitcoind:<version> .

Replace <version> with the desired bitcoind version (ex: 0.18.1)

Push to Docker Hub

$ docker push polarlightning/bitcoind:<version>

LND

Tags

Building the image

$ cd lnd
$ docker build --build-arg LND_VERSION=<version> -t polarlightning/lnd:<version> .

Replace <version> with the desired LND version (ex: 0.7.1-beta)

Push to Docker Hub

$ docker push polarlightning/lnd:<version>