1
0

bump btcpay

This commit is contained in:
nicolas.dorier
2025-03-08 22:35:59 +09:00
parent db361e25e1
commit 2ae3621bfd
4 changed files with 54 additions and 8 deletions

View File

@@ -291,6 +291,22 @@ namespace DockerFileBuildHelper
dockerInfo.GitRef = $"dcg-latest";
dockerInfo.SupportedByUs = true;
break;
case "shopify-app-deployer":
dockerInfo.DockerFilePath = "Dockerfile";
dockerInfo.DockerFilePathARM32v7 = "Dockerfile";
dockerInfo.DockerFilePathARM64v8 = "Dockerfile";
dockerInfo.GitLink = "https://github.com/btcpayserver/shopify-app";
dockerInfo.GitRef = image.Tag;
dockerInfo.SupportedByUs = true;
break;
case "mwebd":
dockerInfo.DockerFilePath = "Dockerfile";
//dockerInfo.DockerFilePath = "Dockerfile";
//dockerInfo.DockerFilePath = "Dockerfile";
dockerInfo.GitLink = "https://github.com/ltcmweb/btcpayserver-ltcmweb-plugin";
dockerInfo.GitRef = "main";
dockerInfo.SupportedByUs = false;
break;
case "tallycoin_connect":
dockerInfo.DockerFilePath = "Dockerfile";
dockerInfo.DockerFilePathARM32v7 = $"Dockerfile.arm32v7";

View File

@@ -178,18 +178,18 @@ cd - && cd ..
# Build btcpayserver
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.0.6/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.0.7/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.0.6/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.0.7/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.0.6/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.0.7/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building btcpayserver/btcpayserver:2.0.6"
echo "Building btcpayserver/btcpayserver:2.0.7"
git clone https://github.com/btcpayserver/btcpayserver btcpayserver
cd btcpayserver
git checkout v2.0.6
git checkout v2.0.7
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:2.0.6" .
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:2.0.7" .
cd - && cd ..
@@ -721,6 +721,18 @@ docker build -f "$DOCKERFILE" -t "lightninglabs/lightning-terminal:v0.14.1-alpha
cd - && cd ..
# Build mwebd
# https://raw.githubusercontent.com/ltcmweb/btcpayserver-ltcmweb-plugin/main/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building hectorchu1/mwebd:latest"
git clone https://github.com/ltcmweb/btcpayserver-ltcmweb-plugin mwebd
cd mwebd
git checkout main
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "hectorchu1/mwebd:latest" .
cd - && cd ..
# Build frontend
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0/docker/frontend/Dockerfile
DOCKERFILE="docker/frontend/Dockerfile"
@@ -813,6 +825,22 @@ docker build -f "$DOCKERFILE" -t "pihole/pihole:2023.05.2" .
cd - && cd ..
# Build shopify-app-deployer
# https://raw.githubusercontent.com/btcpayserver/shopify-app/1.2/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/shopify-app/1.2/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/shopify-app/1.2/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building btcpayserver/shopify-app-deployer:1.2"
git clone https://github.com/btcpayserver/shopify-app shopify-app-deployer
cd shopify-app-deployer
git checkout 1.2
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/shopify-app-deployer:1.2" .
cd - && cd ..
# Build snapdrop
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Snapdrop/1.2/Snapdrop/1.2/Dockerfile
DOCKERFILE="Snapdrop/1.2/Dockerfile"