1
0

Update LNDhub to v1.4.1

This commit is contained in:
Dennis Reimann
2022-08-09 11:23:46 +02:00
parent f147c5a0ae
commit d6b19373c5
4 changed files with 10 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq;
using System.Collections.Generic;
using System.IO;
@@ -650,8 +650,10 @@ namespace DockerFileBuildHelper
case "lndhub":
dockerInfo.DockerFilePath = $"Dockerfile";
dockerInfo.DockerFilePathARM32v7 = $"Dockerfile";
dockerInfo.DockerFilePathARM64v8 = $"Dockerfile";
dockerInfo.GitLink = "https://github.com/BlueWallet/LndHub";
dockerInfo.GitRef = $"{image.Tag.Split("@")[0]}";
dockerInfo.SupportedByUs = false;
break;
case "fireflyiii/core":
dockerInfo.DockerFilePath = $"Dockerfile";

View File

@@ -540,16 +540,14 @@ cd - && cd ..
# Build lndhub
# https://raw.githubusercontent.com/BlueWallet/LndHub/v1.3.3/Dockerfile
# https://raw.githubusercontent.com/BlueWallet/LndHub/v1.4.1/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/BlueWallet/LndHub/v1.3.3/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
echo "Building bluewalletorganization/lndhub:v1.3.3"
echo "Building bluewalletorganization/lndhub:v1.4.1"
git clone https://github.com/BlueWallet/LndHub lndhub
cd lndhub
git checkout v1.3.3
git checkout v1.4.1
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "bluewalletorganization/lndhub:v1.3.3" .
docker build -f "$DOCKERFILE" -t "bluewalletorganization/lndhub:v1.4.1" .
cd - && cd ..