1
0
This commit is contained in:
nicolas.dorier
2020-01-12 20:51:22 +09:00
parent 3edc722e42
commit 163e5ddf01
4 changed files with 32 additions and 13 deletions

View File

@@ -337,6 +337,12 @@ namespace DockerFileBuildHelper
dockerInfo.GitRef = $"basedon-{image.Tag}";
dockerInfo.SupportedByUs = true;
break;
case "groestlcoin/lnd":
dockerInfo.DockerFilePath = "Dockerfile";
dockerInfo.GitLink = "https://github.com/Groestlcoin/lnd";
dockerInfo.GitRef = $"{image.Tag}";
dockerInfo.SupportedByUs = false;
break;
case "monero":
dockerInfo.DockerFilePath = "Dockerfile";
dockerInfo.GitLink = "https://github.com/Kukks/monero-docker";

View File

@@ -248,14 +248,14 @@ cd - && cd ..
# Build lightning
# https://raw.githubusercontent.com/Groestlcoin/lightning/v0.7.3/Dockerfile
# https://raw.githubusercontent.com/Groestlcoin/lightning/v0.8.0/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building groestlcoin/lightning:v0.7.3"
echo "Building groestlcoin/lightning:v0.8.0"
git clone https://github.com/Groestlcoin/lightning lightning
cd lightning
git checkout v0.7.3
git checkout v0.8.0
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "groestlcoin/lightning:v0.7.3" .
docker build -f "$DOCKERFILE" -t "groestlcoin/lightning:v0.8.0" .
cd - && cd ..
@@ -283,6 +283,18 @@ docker build -f "$DOCKERFILE" -t "groestlcoin/groestlcoin-spark:version-0.2.9" .
cd - && cd ..
# Build lnd
# https://raw.githubusercontent.com/Groestlcoin/lnd/v0.8.2-grs/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building groestlcoin/lnd:v0.8.2-grs"
git clone https://github.com/Groestlcoin/lnd lnd
cd lnd
git checkout v0.8.2-grs
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "groestlcoin/lnd:v0.8.2-grs" .
cd - && cd ..
# Build docker-groestlcoin
# https://raw.githubusercontent.com/NicolasDorier/docker-bitcoin/master/groestlcoin/2.17.2/Dockerfile
DOCKERFILE="groestlcoin/2.17.2/Dockerfile"
@@ -378,18 +390,18 @@ cd - && cd ..
# Build nbxplorer
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.1.2/Dockerfile.linuxamd64
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.1.5/Dockerfile.linuxamd64
DOCKERFILE="Dockerfile.linuxamd64"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.1.2/Dockerfile.linuxarm32v7
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.1.5/Dockerfile.linuxarm32v7
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.linuxarm32v7"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.1.2/Dockerfile.linuxarm64v8
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.1.5/Dockerfile.linuxarm64v8
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile.linuxarm64v8"
echo "Building nicolasdorier/nbxplorer:2.1.2"
echo "Building nicolasdorier/nbxplorer:2.1.5"
git clone https://github.com/dgarage/nbxplorer nbxplorer
cd nbxplorer
git checkout v2.1.2
git checkout v2.1.5
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.1.2" .
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.1.5" .
cd - && cd ..