From 1a41760915f444edf54a697ad9a8c6a17b6e2199 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Tue, 10 Dec 2024 16:14:18 +0100 Subject: [PATCH] CLN: Use port 9735 and log to stdout (#1701) * use port 9735 for cln node this makes it consistent with the rest of the environment (default port for regtest is 19846) * cln log to stdout --------- Co-authored-by: Riccardo Balbo --- docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 56eaa1eb..2dcf891d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -489,6 +489,8 @@ services: env_file: *env_file command: - 'lightningd' + - '--addr=0.0.0.0:9735' + - '--announce-addr=cln:9735' - '--network=regtest' - '--alias=cln' - '--bitcoin-rpcconnect=bitcoin' @@ -497,7 +499,6 @@ services: - '--large-channels' - '--rest-port=3010' - '--rest-host=0.0.0.0' - - '--log-file=/home/clightning/.lightning/debug.log' expose: - "9735" ports: