1
0

bump btcpay

This commit is contained in:
nicolas.dorier
2024-06-05 22:52:01 +09:00
parent 96a5f1dead
commit 5a5e2064b4
4 changed files with 16 additions and 16 deletions

View File

@@ -178,18 +178,18 @@ cd - && cd ..
# Build btcpayserver
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.13.1/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.13.2/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.13.1/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.13.2/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.13.1/Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.13.2/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building btcpayserver/btcpayserver:1.13.1$<BTCPAY_BUILD_CONFIGURATION>?"
echo "Building btcpayserver/btcpayserver:1.13.2$<BTCPAY_BUILD_CONFIGURATION>?"
git clone https://github.com/btcpayserver/btcpayserver btcpayserver
cd btcpayserver
git checkout v1.13.1
git checkout v1.13.2
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.13.1$<BTCPAY_BUILD_CONFIGURATION>?" .
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.13.2$<BTCPAY_BUILD_CONFIGURATION>?" .
cd - && cd ..
@@ -384,18 +384,18 @@ cd - && cd ..
# Build nbxplorer
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.2/Dockerfile
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.5/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.2/Dockerfile
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.5/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.2/Dockerfile
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.5/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building nicolasdorier/nbxplorer:2.5.2"
echo "Building nicolasdorier/nbxplorer:2.5.5"
git clone https://github.com/dgarage/nbxplorer nbxplorer
cd nbxplorer
git checkout v2.5.2
git checkout v2.5.5
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.5.2" .
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.5.5" .
cd - && cd ..