1
0

bump btcpay to 2.2.0

This commit is contained in:
rockstardev
2025-07-31 13:52:53 +02:00
parent 47787d68b0
commit 54e2b1b669
3 changed files with 8 additions and 8 deletions

View File

@@ -194,18 +194,18 @@ cd - && cd ..
# Build btcpayserver
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.1.6/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.2.0/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.1.6/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.2.0/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.1.6/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v2.2.0/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building btcpayserver/btcpayserver:2.1.6"
echo "Building btcpayserver/btcpayserver:2.2.0"
git clone https://github.com/btcpayserver/btcpayserver btcpayserver
cd btcpayserver
git checkout v2.1.6
git checkout v2.2.0
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:2.1.6" .
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:2.2.0" .
cd - && cd ..