1
0
This commit is contained in:
nicolas.dorier
2019-04-15 15:12:11 +09:00
parent 5d85e6bac5
commit 33796cc48a
4 changed files with 20 additions and 20 deletions

View File

@@ -111,16 +111,16 @@ cd - && cd ..
# Build rtl
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.2.14/Dockerfile
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.3.0/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.2.14/Dockerfile.arm32v7
# https://raw.githubusercontent.com/ShahanaFarooqui/RTL/v0.3.0/Dockerfile.arm32v7
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.arm32v7"
echo "Building shahanafarooqui/rtl:0.2.14"
echo "Building shahanafarooqui/rtl:0.3.0"
git clone https://github.com/ShahanaFarooqui/RTL rtl
cd rtl
git checkout v0.2.14
git checkout v0.3.0
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "shahanafarooqui/rtl:0.2.14" .
docker build -f "$DOCKERFILE" -t "shahanafarooqui/rtl:0.3.0" .
cd - && cd ..
@@ -165,16 +165,16 @@ cd - && cd ..
# Build btcpayserver
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.92/Dockerfile.linuxamd64
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.93/Dockerfile.linuxamd64
DOCKERFILE="Dockerfile.linuxamd64"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.92/Dockerfile.linuxarm32v7
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.93/Dockerfile.linuxarm32v7
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.linuxarm32v7"
echo "Building btcpayserver/btcpayserver:1.0.3.92"
echo "Building btcpayserver/btcpayserver:1.0.3.93"
git clone https://github.com/btcpayserver/btcpayserver btcpayserver
cd btcpayserver
git checkout v1.0.3.92
git checkout v1.0.3.93
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.0.3.92" .
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.0.3.93" .
cd - && cd ..
@@ -319,16 +319,16 @@ cd - && cd ..
# Build nbxplorer
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.26/Dockerfile.linuxamd64
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.28/Dockerfile.linuxamd64
DOCKERFILE="Dockerfile.linuxamd64"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.26/Dockerfile.linuxarm32v7
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.28/Dockerfile.linuxarm32v7
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.linuxarm32v7"
echo "Building nicolasdorier/nbxplorer:2.0.0.26"
echo "Building nicolasdorier/nbxplorer:2.0.0.28"
git clone https://github.com/dgarage/nbxplorer nbxplorer
cd nbxplorer
git checkout v2.0.0.26
git checkout v2.0.0.28
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.0.0.26" .
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.0.0.28" .
cd - && cd ..