1
0

Bump Groestlcoin Core to 29.0 and lightning (#856)

This commit is contained in:
gruve-p
2025-06-27 13:58:42 +02:00
committed by GitHub
parent 9dc5ca2612
commit c2dad64194
4 changed files with 19 additions and 19 deletions

View File

@@ -248,14 +248,14 @@ cd - && cd ..
# Build lightning
# https://raw.githubusercontent.com/Groestlcoin/lightning/v23.05/Dockerfile
# https://raw.githubusercontent.com/Groestlcoin/lightning/v24.08/Dockerfile
DOCKERFILE="Dockerfile"
echo "Building groestlcoin/lightning:v23.05"
echo "Building groestlcoin/lightning:v24.08"
git clone https://github.com/Groestlcoin/lightning lightning
cd lightning
git checkout v23.05
git checkout v24.08
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "groestlcoin/lightning:v23.05" .
docker build -f "$DOCKERFILE" -t "groestlcoin/lightning:v24.08" .
cd - && cd ..
@@ -308,18 +308,18 @@ cd - && cd ..
# Build groestlcoin
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Groestlcoin/25.0/Groestlcoin/25.0/linuxamd64.Dockerfile
DOCKERFILE="Groestlcoin/25.0/linuxamd64.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Groestlcoin/25.0/Groestlcoin/25.0/linuxarm32v7.Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Groestlcoin/25.0/linuxarm32v7.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Groestlcoin/25.0/Groestlcoin/25.0/linuxarm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Groestlcoin/25.0/linuxarm64v8.Dockerfile"
echo "Building btcpayserver/groestlcoin:25.0"
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Groestlcoin/29.0/Groestlcoin/29.0/linuxamd64.Dockerfile
DOCKERFILE="Groestlcoin/29.0/linuxamd64.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Groestlcoin/29.0/Groestlcoin/29.0/linuxarm32v7.Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Groestlcoin/29.0/linuxarm32v7.Dockerfile"
# https://raw.githubusercontent.com/btcpayserver/dockerfile-deps/Groestlcoin/29.0/Groestlcoin/29.0/linuxarm64v8.Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Groestlcoin/29.0/linuxarm64v8.Dockerfile"
echo "Building btcpayserver/groestlcoin:29.0"
git clone https://github.com/btcpayserver/dockerfile-deps groestlcoin
cd groestlcoin
git checkout Groestlcoin/25.0
git checkout Groestlcoin/29.0
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "btcpayserver/groestlcoin:25.0" .
docker build -f "$DOCKERFILE" -t "btcpayserver/groestlcoin:29.0" .
cd - && cd ..