1
0

update doc

This commit is contained in:
nicolas.dorier
2022-05-11 23:22:23 +09:00
parent cac2c625e8
commit fe08922f32
3 changed files with 16 additions and 16 deletions

View File

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

View File

@@ -452,24 +452,24 @@ 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.3.2-amd64"
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.3.2-amd64" .
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.3.2-amd64"
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.3.2-amd64" .
cd - && cd ..
@@ -886,18 +886,18 @@ cd - && cd ..
# Build thunderhub
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.6/Dockerfile
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.11/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.6/arm32v7.Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="arm32v7.Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.6/arm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="arm64v8.Dockerfile"
echo "Building apotdevin/thunderhub:base-v0.13.6"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.11/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.13.11/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building apotdevin/thunderhub:base-v0.13.11"
git clone https://github.com/apotdevin/thunderhub thunderhub
cd thunderhub
git checkout v0.13.6
git checkout v0.13.11
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:base-v0.13.6" .
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:base-v0.13.11" .
cd - && cd ..