|
|
@ -178,16 +178,16 @@ cd - && cd .. |
|
|
|
|
|
|
|
|
|
|
|
# Build btcpayserver |
|
|
|
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.133/amd64.Dockerfile |
|
|
|
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.134/amd64.Dockerfile |
|
|
|
DOCKERFILE="amd64.Dockerfile" |
|
|
|
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.133/arm32v7.Dockerfile |
|
|
|
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.134/arm32v7.Dockerfile |
|
|
|
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="arm32v7.Dockerfile" |
|
|
|
echo "Building btcpayserver/btcpayserver:1.0.3.133" |
|
|
|
echo "Building btcpayserver/btcpayserver:1.0.3.134" |
|
|
|
git clone https://github.com/btcpayserver/btcpayserver btcpayserver |
|
|
|
cd btcpayserver |
|
|
|
git checkout v1.0.3.133 |
|
|
|
git checkout v1.0.3.134 |
|
|
|
cd "$(dirname $DOCKERFILE)" |
|
|
|
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.0.3.133" . |
|
|
|
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.0.3.134" . |
|
|
|
cd - && cd .. |
|
|
|
|
|
|
|
|
|
|
@ -362,18 +362,18 @@ cd - && cd .. |
|
|
|
|
|
|
|
|
|
|
|
# Build nbxplorer |
|
|
|
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.57/Dockerfile.linuxamd64 |
|
|
|
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.62/Dockerfile.linuxamd64 |
|
|
|
DOCKERFILE="Dockerfile.linuxamd64" |
|
|
|
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.57/Dockerfile.linuxarm32v7 |
|
|
|
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.62/Dockerfile.linuxarm32v7 |
|
|
|
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.linuxarm32v7" |
|
|
|
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.57/Dockerfile.linuxarm64v8 |
|
|
|
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.62/Dockerfile.linuxarm64v8 |
|
|
|
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile.linuxarm64v8" |
|
|
|
echo "Building nicolasdorier/nbxplorer:2.0.0.57" |
|
|
|
echo "Building nicolasdorier/nbxplorer:2.0.0.62" |
|
|
|
git clone https://github.com/dgarage/nbxplorer nbxplorer |
|
|
|
cd nbxplorer |
|
|
|
git checkout v2.0.0.57 |
|
|
|
git checkout v2.0.0.62 |
|
|
|
cd "$(dirname $DOCKERFILE)" |
|
|
|
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.0.0.57" . |
|
|
|
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.0.0.62" . |
|
|
|
cd - && cd .. |
|
|
|
|
|
|
|
|
|
|
|