Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update node versions #39

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
lnd1:
image: lightninglabs/lnd:v0.18.0-beta.1
image: lightninglabs/lnd:v0.18.3-beta.rc1
restart: unless-stopped
depends_on:
- bitcoind
Expand All @@ -18,7 +18,7 @@ services:
depends_on:
- lnd1
entrypoint: ["/wait-for-lnd.sh", "lnd1", "5"]
command: --address=https://lnd1:10009 --cert-path=/root/.lnd/tls.cert --macaroon-path=/root/.lnd/data/chain/bitcoin/regtest/admin.macaroon --log-level=trace --grpc-host=0.0.0.0
command: --tls-ip=lndk1.localhost,lndk1.local --address=https://lnd1:10009 --cert-path=/root/.lnd/tls.cert --macaroon-path=/root/.lnd/data/chain/bitcoin/regtest/admin.macaroon --log-level=trace --grpc-host=0.0.0.0
environment:
- RUST_BACKTRACE=1
volumes:
Expand Down Expand Up @@ -73,7 +73,7 @@ services:
- "ldknode1:/root/.ldknode"

lnd2:
image: lightninglabs/lnd:v0.18.0-beta.1
image: lightninglabs/lnd:v0.18.3-beta.rc1
restart: unless-stopped
depends_on:
- bitcoind
Expand All @@ -91,7 +91,7 @@ services:
depends_on:
- lnd2
entrypoint: ["/wait-for-lnd.sh", "lnd2", "5"]
command: --address=https://lnd2:10009 --cert-path=/root/.lnd/tls.cert --macaroon-path=/root/.lnd/data/chain/bitcoin/regtest/admin.macaroon --log-level=trace --grpc-host=0.0.0.0
command: --tls-ip=lndk2.localhost --address=https://lnd2:10009 --cert-path=/root/.lnd/tls.cert --macaroon-path=/root/.lnd/data/chain/bitcoin/regtest/admin.macaroon --log-level=trace --grpc-host=0.0.0.0
environment:
- RUST_BACKTRACE=1
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker/lndk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM rust:1.78-bookworm AS builder

# References for lndk
ARG LNDK_SOURCE=https://github.com/lndk-org/lndk.git
ARG LNDK_REF=60e17a0c94177f7d2d160aa08f5cc32a1274b51e
ARG LNDK_REF=83e1c90dbef2749272c258ac2e2f3d04eb2f32f6

# Add utils
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion scripts/clean.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

docker-compose down --volumes
docker compose down --volumes
4 changes: 2 additions & 2 deletions scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,8 @@ waitForGraphSync() {
}

restartLndkNodes() {
docker-compose restart lndk1
docker-compose restart lndk2
docker compose restart lndk1
docker compose restart lndk2

echo "LNDK nodes restarted successfully."
}
Expand Down