docs: update lnd versions in DOCKER.md

This commit is contained in:
Dan Bolser 2021-12-13 15:32:18 +01:00 committed by Oliver Gugger
parent 617be6f994
commit fc2bab4006
No known key found for this signature in database
GPG key ID: 8E4256593F177720

View file

@ -29,7 +29,7 @@ Docker container, adding the appropriate command-line options as parameters.
You first need to build the `lnd` docker image:
```shell
⛰ docker build --tag=myrepository/lnd --build-arg checkout=v0.11.1-beta .
⛰ docker build --tag=myrepository/lnd --build-arg checkout=v0.14.1-beta .
```
It is recommended that you checkout the latest released tag.
@ -49,7 +49,7 @@ images of `lnd` available in the
You can just pull those images by specifying a release tag:
```shell
⛰ docker pull lightninglabs/lnd:v0.12.0-beta
⛰ docker pull lightninglabs/lnd:v0.14.1-beta
⛰ docker run lightninglabs/lnd [command-line options]
```
@ -61,10 +61,10 @@ script in the image that can be called (before starting the container for
example):
```shell
⛰ docker run --rm --entrypoint="" lightninglabs/lnd:v0.12.1-beta /verify-install.sh v0.12.1-beta
⛰ docker run --rm --entrypoint="" lightninglabs/lnd:v0.14.1-beta /verify-install.sh v0.14.1-beta
⛰ OK=$?
⛰ if [ "$OK" -ne "0" ]; then echo "Verification failed!"; exit 1; done
⛰ docker run lightninglabs/lnd [command-line options]
⛰ docker run lightninglabs/lnd:v0.14.1-beta [command-line options]
```
## Volumes
@ -118,7 +118,7 @@ To test the Docker production image locally, run the following from the project
To choose a specific [branch](https://github.com/lightningnetwork/lnd/branches) or [tag](https://hub.docker.com/r/lightninglabs/lnd/tags?page=1&ordering=last_updated) instead, use the "checkout" build-arg. For example, to build the latest tagged commit:
```shell
⛰ docker build . --build-arg checkout=v0.13.0-beta -t myrepository/lnd:v0.13.0-beta
⛰ docker build . --build-arg checkout=v0.14.1-beta -t myrepository/lnd:v0.14.1-beta
```
To build the image using the most current tag: