From cade383cf9c14b9dbb5b9063191c20a7be442672 Mon Sep 17 00:00:00 2001 From: Conner Ow Date: Mon, 8 Jan 2024 17:56:32 -0600 Subject: [PATCH 1/2] Fix docker-compose IP --- docker-compose.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index a1195547..a74bb171 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,5 +1,5 @@ # Important: 127.0.0.1 should be replaced by the external ip address of the machine -version: "3" +version: '3' services: gatewayd: @@ -26,8 +26,8 @@ services: - gateway_datadir:/gateway_data - lnd_datadir:/lnd_data:ro ports: - - "8175:8175" - - "8080:8080" + - '8175:8175' + - '8080:8080' depends_on: - lnd restart: always @@ -40,8 +40,8 @@ services: - -c - lnd --bitcoin.active --bitcoin.signet --bitcoin.dnsseed=0 --bitcoin.node=bitcoind --protocol.wumbo-channels --bitcoind.rpchost=bitcoind --bitcoind.rpcuser=bitcoin --bitcoind.rpcpass=bitcoin --bitcoind.zmqpubrawblock=tcp://bitcoind:48332 --bitcoind.zmqpubrawtx=tcp://bitcoind:48333 --listen=0.0.0.0:9735 --rpclisten=0.0.0.0:10009 --restlisten=0.0.0.0:8080 --tlsextradomain=lnd --noseedbackup ports: - - "10009:10009" - - "0.0.0.0:9735:9735" + - '10009:10009' + - '0.0.0.0:9735:9735' volumes: - lnd_datadir:/root/.lnd depends_on: @@ -54,7 +54,7 @@ services: ports: - 0.0.0.0:38333:38333 volumes: - - "bitcoin_datadir:/root/.bitcoin" + - 'bitcoin_datadir:/root/.bitcoin' restart: always platform: linux/amd64 @@ -87,10 +87,10 @@ services: - ACCOUNT_CONFIG_PATH=/thconfig/accounts.yaml - HOST=0.0.0.0 - PORT=3002 - - FM_GATEWAY_API=http://143.198.55.236:8175 + - FM_GATEWAY_API=http://127.0.0.1:8175 - FM_GATEWAY_PASSWORD=thereisnosecondbest ports: - - "0.0.0.0:3002:3002" + - '0.0.0.0:3002:3002' volumes: - lnd_datadir:/root/.lnd - thunderhub_datadir:/thconfig From 93c559f12232de280541eb435df09ddf5725863d Mon Sep 17 00:00:00 2001 From: Conner Ow Date: Mon, 8 Jan 2024 18:08:16 -0600 Subject: [PATCH 2/2] remove unnecessary diffs --- docker-compose.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index a74bb171..f25f3c9f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,5 +1,5 @@ # Important: 127.0.0.1 should be replaced by the external ip address of the machine -version: '3' +version: "3" services: gatewayd: @@ -26,8 +26,8 @@ services: - gateway_datadir:/gateway_data - lnd_datadir:/lnd_data:ro ports: - - '8175:8175' - - '8080:8080' + - "8175:8175" + - "8080:8080" depends_on: - lnd restart: always @@ -40,8 +40,8 @@ services: - -c - lnd --bitcoin.active --bitcoin.signet --bitcoin.dnsseed=0 --bitcoin.node=bitcoind --protocol.wumbo-channels --bitcoind.rpchost=bitcoind --bitcoind.rpcuser=bitcoin --bitcoind.rpcpass=bitcoin --bitcoind.zmqpubrawblock=tcp://bitcoind:48332 --bitcoind.zmqpubrawtx=tcp://bitcoind:48333 --listen=0.0.0.0:9735 --rpclisten=0.0.0.0:10009 --restlisten=0.0.0.0:8080 --tlsextradomain=lnd --noseedbackup ports: - - '10009:10009' - - '0.0.0.0:9735:9735' + - "10009:10009" + - "0.0.0.0:9735:9735" volumes: - lnd_datadir:/root/.lnd depends_on: @@ -54,7 +54,7 @@ services: ports: - 0.0.0.0:38333:38333 volumes: - - 'bitcoin_datadir:/root/.bitcoin' + - "bitcoin_datadir:/root/.bitcoin" restart: always platform: linux/amd64 @@ -90,7 +90,7 @@ services: - FM_GATEWAY_API=http://127.0.0.1:8175 - FM_GATEWAY_PASSWORD=thereisnosecondbest ports: - - '0.0.0.0:3002:3002' + - "0.0.0.0:3002:3002" volumes: - lnd_datadir:/root/.lnd - thunderhub_datadir:/thconfig