1
0

update doc

This commit is contained in:
nicolas.dorier
2019-01-30 17:49:16 +09:00
parent 1d046044ce
commit 1c48a9fe88
2 changed files with 16 additions and 29 deletions

View File

@@ -151,16 +151,16 @@ cd - && cd ..
# Build btcpayserver
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.50/Dockerfile.linuxamd64
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.52/Dockerfile.linuxamd64
DOCKERFILE="Dockerfile.linuxamd64"
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.50/Dockerfile.linuxarm32v7
# https://raw.githubusercontent.com/btcpayserver/btcpayserver/v1.0.3.52/Dockerfile.linuxarm32v7
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.linuxarm32v7"
echo "Building btcpayserver/btcpayserver:1.0.3.50"
echo "Building btcpayserver/btcpayserver:1.0.3.52"
git clone https://github.com/btcpayserver/btcpayserver btcpayserver
cd btcpayserver
git checkout v1.0.3.50
git checkout v1.0.3.52
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.0.3.50" .
docker build -f "$DOCKERFILE" -t "btcpayserver/btcpayserver:1.0.3.52" .
cd - && cd ..
@@ -361,26 +361,14 @@ cd - && cd ..
# Build btcqbo
# https://raw.githubusercontent.com/JeffVandrewJr/btcqbo/v0.3.13/Dockerfile
# https://raw.githubusercontent.com/JeffVandrewJr/btcqbo/v0.3.25/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building jvandrew/btcqbo:0.3.13"
echo "Building jvandrew/btcqbo:0.3.25"
git clone https://github.com/JeffVandrewJr/btcqbo btcqbo
cd btcqbo
git checkout v0.3.13
git checkout v0.3.25
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "jvandrew/btcqbo:0.3.13" .
cd - && cd ..
# Build btcqbo
# https://raw.githubusercontent.com/JeffVandrewJr/btcqbo/v0.3.13/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building jvandrew/btcqbo:0.3.13"
git clone https://github.com/JeffVandrewJr/btcqbo btcqbo
cd btcqbo
git checkout v0.3.13
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "jvandrew/btcqbo:0.3.13" .
docker build -f "$DOCKERFILE" -t "jvandrew/btcqbo:0.3.25" .
cd - && cd ..
@@ -397,14 +385,14 @@ cd - && cd ..
# Build librepatron
# https://raw.githubusercontent.com/JeffVandrewJr/patron/v0.6.76/Dockerfile
# https://raw.githubusercontent.com/JeffVandrewJr/patron/v0.6.78/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building jvandrew/librepatron:0.6.76"
echo "Building jvandrew/librepatron:0.6.78"
git clone https://github.com/JeffVandrewJr/patron librepatron
cd librepatron
git checkout v0.6.76
git checkout v0.6.78
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "jvandrew/librepatron:0.6.76" .
docker build -f "$DOCKERFILE" -t "jvandrew/librepatron:0.6.78" .
cd - && cd ..