1
0

feat: integrate thunderhub (#291)

* feat: initial integration

* chore: opt in and readme

* chore: add to btcpay env

* chore: move env and yml change

* chore: image builder

* chore: bump version

* chore: bump version (#1)

* chore: version bump

* chore: update repo

* chore: bump version
This commit is contained in:
Anthony Potdevin
2020-04-23 07:42:25 +02:00
committed by GitHub
parent 1ae425ebc9
commit 761e5ea9a8
5 changed files with 41 additions and 0 deletions

View File

@@ -544,6 +544,12 @@ namespace DockerFileBuildHelper
dockerInfo.GitRef = $"v{image.Tag.Split('-')[0]}";
dockerInfo.SupportedByUs = true;
break;
case "thunderhub":
dockerInfo.DockerFilePath = $"Dockerfile";
dockerInfo.GitLink = "https://github.com/apotdevin/thunderhub";
dockerInfo.GitRef = $"{image.Tag.Split('-')[0]}";
dockerInfo.SupportedByUs = false;
break;
default:
if (firstTry)
{

View File

@@ -639,6 +639,18 @@ docker build -f "$DOCKERFILE" -t "pihole/pihole:v4.4" .
cd - && cd ..
# Build thunderhub
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.3.9/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building apotdevin/thunderhub:v0.3.9"
git clone https://github.com/apotdevin/thunderhub thunderhub
cd thunderhub
git checkout v0.3.9
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "apotdevin/thunderhub:v0.3.9" .
cd - && cd ..
# Build docker-gen
# https://raw.githubusercontent.com/btcpayserver/docker-gen/v0.7.7/linuxamd64.Dockerfile
DOCKERFILE="linuxamd64.Dockerfile"