1
0

Hotfix for problems with LND 0.13.1 (#508)

* Revert "Revert "Bump LND to v0.13.1-beta-withloop (#506)""

This reverts commit b9777f975d.

* Fetching version that waits for proper wallet unlock state before proceeding
This commit is contained in:
rockstardev
2021-08-12 22:49:46 -05:00
committed by GitHub
parent b9777f975d
commit dade557853
3 changed files with 8 additions and 8 deletions

View File

@@ -170,18 +170,18 @@ cd - && cd ..
# Build lnd
# https://raw.githubusercontent.com/btcpayserver/lnd/basedon-v0.12.1-beta-withloop/linuxamd64.Dockerfile
# https://raw.githubusercontent.com/btcpayserver/lnd/basedon-v0.13.1-beta-withloop-fix/linuxamd64.Dockerfile
DOCKERFILE="linuxamd64.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/lnd/basedon-v0.12.1-beta-withloop/linuxarm32v7.Dockerfile
# https://raw.githubusercontent.com/btcpayserver/lnd/basedon-v0.13.1-beta-withloop-fix/linuxarm32v7.Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="linuxarm32v7.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/lnd/basedon-v0.12.1-beta-withloop/linuxarm64v8.Dockerfile
# https://raw.githubusercontent.com/btcpayserver/lnd/basedon-v0.13.1-beta-withloop-fix/linuxarm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="linuxarm64v8.Dockerfile"
echo "Building btcpayserver/lnd:v0.12.1-beta-withloop"
echo "Building btcpayserver/lnd:v0.13.1-beta-withloop-fix"
git clone https://github.com/btcpayserver/lnd lnd
cd lnd
git checkout basedon-v0.12.1-beta-withloop
git checkout basedon-v0.13.1-beta-withloop-fix
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/lnd:v0.12.1-beta-withloop" .
docker build -f "$DOCKERFILE" -t "btcpayserver/lnd:v0.13.1-beta-withloop-fix" .
cd - && cd ..