This package makes it easy to deploy a Lightning Network Daemon in a DAppNode. It also includes a web interface lncli-web to manage the node.
lightning-network-summary The Bitcoin Lightning Network: Paper (PDF)
-
git
Install git commandline tool.
-
docker
Install docker. The community edition (docker-ce) will work. In Linux make sure you grant permissions to the current user to use docker by adding current user to docker group,
sudo usermod -aG docker $USER. Once you update the users group, exit from the current terminal and open a new one to make effect. -
docker-compose
Install docker-compose
Note: Make sure you can run git, docker ps, docker-compose without any issue and without sudo command.
docker-compose build
docker-compose up -d
docker-compose logs -f
docker-compose down
You can edit the docker-compose.yml and add extra options, such a:
| name | default |
|---|---|
| RPCUSER | dappnode |
| RPCPASS | dappnode |
| BITCOIND_HOST | my.bitcoin.dnp.dappnode.eth |
| NETWORK | mainnet |
| SET_SERVERHOST | 0.0.0.0 |
| ALIAS | |
| EXT_IP |
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details
This is early stage software