1
0

Revert "bump btcpay"

This reverts commit ef490b56fa.
This commit is contained in:
nicolas.dorier
2022-04-28 22:20:00 +09:00
parent ef490b56fa
commit 7753d35627
4 changed files with 28 additions and 28 deletions

View File

@@ -110,18 +110,18 @@ cd - && cd ..
# Build c-lightning-rest
# https://raw.githubusercontent.com/Ride-The-Lightning/c-lightning-REST/v0.7.0/amd64.Dockerfile
# https://raw.githubusercontent.com/Ride-The-Lightning/c-lightning-REST/v0.5.2/amd64.Dockerfile
DOCKERFILE="amd64.Dockerfile"
# https://raw.githubusercontent.com/Ride-The-Lightning/c-lightning-REST/v0.7.0/arm32v7.Dockerfile
# https://raw.githubusercontent.com/Ride-The-Lightning/c-lightning-REST/v0.5.2/arm32v7.Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="arm32v7.Dockerfile"
# https://raw.githubusercontent.com/Ride-The-Lightning/c-lightning-REST/v0.7.0/arm64v8.Dockerfile
# https://raw.githubusercontent.com/Ride-The-Lightning/c-lightning-REST/v0.5.2/arm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="arm64v8.Dockerfile"
echo "Building saubyk/c-lightning-rest:0.7.0"
echo "Building saubyk/c-lightning-rest:0.5.2"
git clone https://github.com/Ride-The-Lightning/c-lightning-REST c-lightning-rest
cd c-lightning-rest
git checkout v0.7.0
git checkout v0.5.2
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "saubyk/c-lightning-rest:0.7.0" .
docker build -f "$DOCKERFILE" -t "saubyk/c-lightning-rest:0.5.2" .
cd - && cd ..
@@ -242,18 +242,18 @@ cd - && cd ..
# Build btcpayserver
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.5.0/amd64.Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.4.9/amd64.Dockerfile
DOCKERFILE="amd64.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.5.0/arm32v7.Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.4.9/arm32v7.Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="arm32v7.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.5.0/arm64v8.Dockerfile
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.4.9/arm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="arm64v8.Dockerfile"
echo "Building btcpayserver/btcpayserver:1.5.0$<BTCPAY_BUILD_CONFIGURATION>?"
echo "Building btcpayserver/btcpayserver:1.4.9$<BTCPAY_BUILD_CONFIGURATION>?"
git clone https://github.com/btcpayserver/btcpayserver btcpayserver
cd btcpayserver
git checkout v1.5.0
git checkout v1.4.9
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.5.0$<BTCPAY_BUILD_CONFIGURATION>?" .
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.4.9$<BTCPAY_BUILD_CONFIGURATION>?" .
cd - && cd ..
@@ -452,40 +452,40 @@ cd - && cd ..
# Build monero
# https://raw.githubusercontent.com/Kukks/monero-docker/x86_64/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building btcpayserver/monero:0.17.3.0-amd64"
echo "Building btcpayserver/monero:0.17.2.3"
git clone https://github.com/Kukks/monero-docker monero
cd monero
git checkout x86_64
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/monero:0.17.3.0-amd64" .
docker build -f "$DOCKERFILE" -t "btcpayserver/monero:0.17.2.3" .
cd - && cd ..
# Build monero
# https://raw.githubusercontent.com/Kukks/monero-docker/x86_64/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building btcpayserver/monero:0.17.3.0-amd64"
echo "Building btcpayserver/monero:0.17.2.3"
git clone https://github.com/Kukks/monero-docker monero
cd monero
git checkout x86_64
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/monero:0.17.3.0-amd64" .
docker build -f "$DOCKERFILE" -t "btcpayserver/monero:0.17.2.3" .
cd - && cd ..
# Build nbxplorer
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.3.20/Dockerfile.linuxamd64
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.3.19/Dockerfile.linuxamd64
DOCKERFILE="Dockerfile.linuxamd64"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.3.20/Dockerfile.linuxarm32v7
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.3.19/Dockerfile.linuxarm32v7
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.linuxarm32v7"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.3.20/Dockerfile.linuxarm64v8
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.3.19/Dockerfile.linuxarm64v8
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile.linuxarm64v8"
echo "Building nicolasdorier/nbxplorer:2.3.20"
echo "Building nicolasdorier/nbxplorer:2.3.19"
git clone https://github.com/dgarage/nbxplorer nbxplorer
cd nbxplorer
git checkout v2.3.20
git checkout v2.3.19
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.3.20" .
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.3.19" .
cd - && cd ..