2018-05-17 04:50:25 +03:00
|
|
|
# Docker Instructions
|
|
|
|
|
2020-11-21 12:49:44 +03:00
|
|
|
There are two flavors of Dockerfiles available:
|
|
|
|
- `Dockerfile`: Used for production builds. Checks out the source code from
|
|
|
|
GitHub during build. The build argument `--build-arg checkout=v0.x.x-beta`
|
|
|
|
can be used to specify what git tag or commit to check out before building.
|
|
|
|
- `dev.Dockerfile` Used for development or testing builds. Uses the local code
|
|
|
|
when building and allows local changes to be tested more easily.
|
|
|
|
|
2018-05-17 04:50:25 +03:00
|
|
|
## Development/testing
|
|
|
|
|
2020-11-21 12:49:44 +03:00
|
|
|
To build a standalone development image from the local source directory, use the
|
|
|
|
following command:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ docker build --tag=myrepository/lnd-dev -f dev.Dockerfile .
|
|
|
|
```
|
|
|
|
|
|
|
|
There is also a `docker-compose` setup available for development or testing that
|
|
|
|
spins up a `btcd` backend alongside `lnd`. Check out the documentation at
|
|
|
|
[docker/README.md](../docker/README.md) to learn more about how to use that
|
|
|
|
setup to create a small local Lightning Network.
|
2018-05-17 04:50:25 +03:00
|
|
|
|
|
|
|
## Production
|
|
|
|
|
2019-02-17 03:47:20 +03:00
|
|
|
To use Docker in a production environment, you can run `lnd` by creating a
|
|
|
|
Docker container, adding the appropriate command-line options as parameters.
|
|
|
|
|
|
|
|
You first need to build the `lnd` docker image:
|
2018-05-17 04:50:25 +03:00
|
|
|
|
|
|
|
```
|
2019-02-17 03:47:20 +03:00
|
|
|
$ docker build --tag=myrepository/lnd --build-arg checkout=v0.11.1-beta .
|
2018-05-17 04:50:25 +03:00
|
|
|
```
|
|
|
|
|
2019-02-17 03:47:20 +03:00
|
|
|
It is recommended that you checkout the latest released tag.
|
|
|
|
|
|
|
|
You can continue by creating and running the container:
|
2018-05-17 04:50:25 +03:00
|
|
|
|
|
|
|
```
|
2019-02-17 03:47:20 +03:00
|
|
|
$ docker run lnd [command-line options]
|
2018-05-17 04:50:25 +03:00
|
|
|
```
|
|
|
|
|
2019-02-17 03:47:20 +03:00
|
|
|
Note: there currently are no automated docker image builds available.
|
|
|
|
|
2018-05-17 04:50:25 +03:00
|
|
|
## Volumes
|
|
|
|
|
|
|
|
A Docker volume will be created with your `.lnd` directory automatically, and will
|
|
|
|
persist through container restarts.
|
|
|
|
|
|
|
|
You can also optionally manually specify a local folder to be used as a volume:
|
|
|
|
|
|
|
|
```
|
2019-02-17 03:47:20 +03:00
|
|
|
$ docker create --name=mylndcontainer -v /media/lnd-docker/:/root/.lnd myrepository/lnd [command-line options]
|
2018-05-17 04:50:25 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
Here is an example testnet `lnd` that uses Neutrino:
|
|
|
|
|
|
|
|
```
|
2019-02-17 03:47:20 +03:00
|
|
|
$ docker run --name lnd-testnet myrepository/lnd --bitcoin.active --bitcoin.testnet --bitcoin.node=neutrino --neutrino.connect=faucet.lightning.community
|
2018-05-17 04:50:25 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
Create a wallet (and write down the seed):
|
|
|
|
|
|
|
|
```
|
|
|
|
$ docker exec -it lnd-testnet lncli create
|
|
|
|
```
|
|
|
|
|
|
|
|
Confirm `lnd` has begun to synchronize:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ docker logs lnd-testnet
|
|
|
|
[snipped]
|
|
|
|
2018-05-01 02:28:01.201 [INF] RPCS: RPC server listening on 127.0.0.1:10009
|
|
|
|
2018-05-01 02:28:01.201 [INF] LTND: Waiting for chain backend to finish sync, start_height=2546
|
|
|
|
2018-05-01 02:28:01.201 [INF] RPCS: gRPC proxy started at 127.0.0.1:8080
|
|
|
|
2018-05-01 02:28:08.999 [INF] LNWL: Caught up to height 10000
|
|
|
|
2018-05-01 02:28:09.872 [INF] BTCN: Processed 10547 blocks in the last 10.23s (height 10547, 2012-05-28 05:02:32 +0000 UTC)
|
|
|
|
```
|
|
|
|
|
|
|
|
This is a simple example, it is possible to use any command-line options necessary
|
|
|
|
to expose RPC ports, use `btcd` or `bitcoind`, or add additional chains.
|
2019-01-21 06:05:08 +03:00
|
|
|
|
|
|
|
## LND Development and Testing
|
|
|
|
|
|
|
|
To test the Docker production image locally, run the following from
|
|
|
|
the project root:
|
|
|
|
|
|
|
|
```
|
2019-02-17 03:47:20 +03:00
|
|
|
$ docker build . -t myrepository/lnd:master
|
2019-01-21 06:05:08 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
To choose a specific branch or tag instead, use the "checkout" build-arg. For example, to build the latest commits in master:
|
|
|
|
|
|
|
|
```
|
2019-02-17 03:47:20 +03:00
|
|
|
$ docker build . --build-arg checkout=v0.8.0-beta -t myrepository/lnd:v0.8.0-beta
|
2019-01-21 06:05:08 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
To build the image using the most current tag:
|
|
|
|
|
|
|
|
```
|
2019-02-17 03:47:20 +03:00
|
|
|
$ docker build . --build-arg checkout=$(git describe --tags `git rev-list --tags --max-count=1`) -t myrepository/lnd:latest-tag
|
2019-01-21 06:05:08 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
Once the image has been built and tagged locally, start the container:
|
|
|
|
|
|
|
|
```
|
2019-02-17 03:47:20 +03:00
|
|
|
docker run --name=lnd-testnet -it myrepository/lnd:latest-tag --bitcoin.active --bitcoin.testnet --bitcoin.node=neutrino --neutrino.connect=faucet.lightning.community
|
2019-01-21 06:05:08 +03:00
|
|
|
```
|