Skip to content

lightningsale/docker-lnd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

Lightning.Sale

Our version of the Lightning Network Daemon, until they release their official Docker image

To build image: docker build . -t lightningsale/docker-lnd

TODO:

  • Specify lnd version
  • Don't use Richard87s fork

Running:

-d --restart=unless-stopped

docker run \
 --rm -it \
 -e NETWORK=testnet \
 -e CHAIN=bitcoin \
 -e DEBUG=info \
 -e RPCLISTEN=0.0.0.0:10009 \
 -v /root/.lnd:/root/.lnd \
 -p 127.0.0.1:10009:10009 \
 -p 127.0.0.1:8080:8080 \
 --name lnd \
 --entrypoint="./start-lnd.sh" \
 lightningsale/docker-lnd \
 --bitcoin.node=neutrino \
 --neutrino.connect=faucet.lightning.community \
 --autopilot.active