1
0

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

This commit is contained in:
rockstardev
2021-08-12 03:11:41 -05:00
committed by GitHub
parent 71d967082c
commit 7574612a68
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/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/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/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"
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
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" .
cd - && cd ..