1
0

Merge pull request #516 from btcpayserver/mempool

This commit is contained in:
Andrew Camilleri
2022-10-30 09:28:59 +01:00
committed by GitHub
6 changed files with 138 additions and 9 deletions

View File

@@ -305,6 +305,14 @@ namespace DockerFileBuildHelper
dockerInfo.GitRef = $"{image.Tag}";
dockerInfo.SupportedByUs = false;
break;
case "mempool":
dockerInfo.DockerFilePath = "docker/frontend/Dockerfile";
dockerInfo.DockerFilePathARM32v7 = "docker/frontend/Dockerfile";
dockerInfo.DockerFilePathARM64v8 = "docker/frontend/Dockerfile";
dockerInfo.GitLink = "https://github.com/mempool/mempool";
dockerInfo.GitRef = $"{image.Tag}";
dockerInfo.SupportedByUs = false;
break;
case "docker-bitcoingold":
dockerInfo.DockerFilePath = $"bitcoingold/{image.Tag}/Dockerfile";
dockerInfo.GitLink = "https://github.com/Vutov/docker-bitcoin";

View File

@@ -741,7 +741,7 @@ DOCKERFILE="Dockerfile"
echo "Building fireflyiii/core:latest"
git clone https://dev.azure.com/Firefly-III/_git/MainImage core
cd core
git checkout
git checkout
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "fireflyiii/core:latest" .
cd - && cd ..
@@ -817,6 +817,18 @@ docker build -f "$DOCKERFILE" -t "lightninglabs/lightning-terminal:v0.6.7-alpha-
cd - && cd ..
# Build mempool
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/frontend/Dockerfile
DOCKERFILE="docker/frontend/Dockerfile"
echo "Building mempool/mempool:v2.5.0-dev1"
git clone https://github.com/mempool/mempool mempool
cd mempool
git checkout v2.5.0-dev1
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "mempool/mempool:v2.5.0-dev1" .
cd - && cd ..
# Build ndlc-cli
# https://raw.githubusercontent.com/dgarage/ndlc/releases/1.0.1/amd64.Dockerfile
DOCKERFILE="amd64.Dockerfile"
@@ -1165,5 +1177,3 @@ git checkout master
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "romanornr/docker-viacoin:0.15.2" .
cd - && cd ..