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:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user