1
0

Add PodcastIndex helipad (#567)

This commit is contained in:
Andrew Camilleri
2022-01-12 16:50:17 +01:00
committed by GitHub
parent 4dcbeaf193
commit 36619b3f98
4 changed files with 70 additions and 0 deletions

View File

@@ -673,6 +673,20 @@ namespace DockerFileBuildHelper
dockerInfo.DockerFilePath = $"Dockerfile";
dockerInfo.GitRef = image.Tag.Replace("-path-prefix", "");
break;
case "chatwoot/chatwoot":
dockerInfo.DockerFilePath = $"docker/Dockerfile";
dockerInfo.DockerFilePathARM32v7 = $"docker/Dockerfile";
dockerInfo.DockerFilePathARM64v8 = $"docker/Dockerfile";
dockerInfo.GitLink = "https://github.com/chatwoot/chatwoot";
dockerInfo.GitRef = $"{image.Tag}";
break;
case "podcastindexorg/podcasting20-boosts":
dockerInfo.DockerFilePath = $"umbrel/Dockerfile";
dockerInfo.DockerFilePathARM32v7 = $"umbrel/Dockerfile";
dockerInfo.DockerFilePathARM64v8 = $"umbrel/Dockerfile";
dockerInfo.GitLink = "https://github.com/Podcastindex-org/helipad";
dockerInfo.GitRef = $"{image.Tag}";
break;
default:
if (firstTry)
{