1
0

Update doc

This commit is contained in:
nicolas.dorier
2020-12-18 23:05:47 +09:00
parent 5b0ee8247a
commit 44a36be775
3 changed files with 13 additions and 13 deletions

View File

@@ -558,7 +558,7 @@ namespace DockerFileBuildHelper
dockerInfo.DockerFilePathARM32v7 = "arm32v7.Dockerfile";
dockerInfo.DockerFilePathARM64v8 = "arm64v8.Dockerfile";
dockerInfo.GitLink = "https://github.com/apotdevin/thunderhub";
dockerInfo.GitRef = $"{image.Tag.Split('-')[0]}";
dockerInfo.GitRef = $"{image.Tag.Split('-')[1]}";
dockerInfo.SupportedByUs = false;
break;
case "python-teos":

View File

@@ -446,24 +446,24 @@ cd - && cd ..
# Build monero
# https://raw.githubusercontent.com/Kukks/monero-docker/x86_64/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building btcpayserver/monero:0.17.1.6"
echo "Building btcpayserver/monero:0.17.1.7"
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.1.6" .
docker build -f "$DOCKERFILE" -t "btcpayserver/monero:0.17.1.7" .
cd - && cd ..
# Build monero
# https://raw.githubusercontent.com/Kukks/monero-docker/x86_64/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building btcpayserver/monero:0.17.1.6"
echo "Building btcpayserver/monero:0.17.1.7"
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.1.6" .
docker build -f "$DOCKERFILE" -t "btcpayserver/monero:0.17.1.7" .
cd - && cd ..
@@ -688,18 +688,18 @@ cd - && cd ..
# Build thunderhub
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.11.0/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.12.0/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.11.0/arm32v7.Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.12.0/arm32v7.Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="arm32v7.Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.11.0/arm64v8.Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.12.0/arm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="arm64v8.Dockerfile"
echo "Building apotdevin/thunderhub:v0.11.0"
echo "Building apotdevin/thunderhub:base-v0.12.0"
git clone https://github.com/apotdevin/thunderhub thunderhub
cd thunderhub
git checkout v0.11.0
git checkout v0.12.0
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:v0.11.0" .
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:base-v0.12.0" .
cd - && cd ..