1
0

Add Lightning Watchtower TEOS + add zmq fragment (#320)

* Add Lightning Watchtower TEOS + add zmq fragment

* add txindex requirement

* update port

* add zmqpubhashblock

* update zmq port

* expose port

* Update opt-add-zmq.yml

* update image

* update local docker builder
This commit is contained in:
Andrew Camilleri
2020-07-02 05:43:58 +02:00
committed by GitHub
parent 20bb6db9e0
commit 1f55d7bc0e
12 changed files with 130 additions and 45 deletions

View File

@@ -551,6 +551,14 @@ namespace DockerFileBuildHelper
dockerInfo.GitLink = "https://github.com/apotdevin/thunderhub";
dockerInfo.GitRef = $"{image.Tag.Split('-')[0]}";
dockerInfo.SupportedByUs = false;
break;
case "python-teos":
dockerInfo.DockerFilePath = $"docker/Dockerfile";
dockerInfo.DockerFilePathARM32v7 = $"docker/Dockerfile";
dockerInfo.DockerFilePathARM64v8 = $"docker/Dockerfile";
dockerInfo.GitLink = "https://github.com/talaia-labs/python-teos";
dockerInfo.GitRef = $"master";
dockerInfo.SupportedByUs = false;
break;
default:
if (firstTry)

View File

@@ -639,6 +639,22 @@ docker build -f "$DOCKERFILE" -t "pihole/pihole:v5.0" .
cd - && cd ..
# Build python-teos
# https://raw.githubusercontent.com/talaia-labs/python-teos/master/docker/Dockerfile
DOCKERFILE="docker/Dockerfile"
# https://raw.githubusercontent.com/talaia-labs/python-teos/master/docker/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="docker/Dockerfile"
# https://raw.githubusercontent.com/talaia-labs/python-teos/master/docker/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="docker/Dockerfile"
echo "Building talaia/python-teos:latest"
git clone https://github.com/talaia-labs/python-teos python-teos
cd python-teos
git checkout master
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "talaia/python-teos:latest" .
cd - && cd ..
# Build thunderhub
# https://raw.githubusercontent.com/apotdevin/thunderhub/v0.8.5/Dockerfile
DOCKERFILE="Dockerfile"