Skip to content

Commit

Permalink
chore: cleanup docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Mar 8, 2024
1 parent aaa05e0 commit 9183e3c
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,23 +113,30 @@ services:
container_name: lnd1
hostname: lnd1
command: >-
lnd --noseedbackup --trickledelay=5000 --alias=lnd1 --externalip=lnd1
--tlsextradomain=lnd1 --tlsextradomain=lnd1
--tlsextradomain=host.docker.internal --listen=0.0.0.0:9735
--rpclisten=0.0.0.0:10009 --restlisten=0.0.0.0:8080 --bitcoin.active
--bitcoin.regtest --bitcoin.node=bitcoind
--bitcoind.rpchost=bitcoind --bitcoind.rpcuser=polaruser
lnd
--noseedbackup
--trickledelay=5000
--alias=lnd1
--externalip=lnd1
--tlsextradomain=lnd1
--tlsextradomain=lnd1
--tlsextradomain=host.docker.internal
--listen=0.0.0.0:9735
--rpclisten=0.0.0.0:10009
--bitcoin.active
--bitcoin.regtest
--bitcoin.node=bitcoind
--bitcoind.rpchost=bitcoind
--bitcoind.rpcuser=polaruser
--bitcoind.rpcpass=polarpass
--bitcoind.zmqpubrawblock=tcp://bitcoind:28334
--bitcoind.zmqpubrawtx=tcp://bitcoind:28335
restart: always
volumes:
- ./data/lnd1:/root/.lnd
expose:
- "8080"
- "10009"
- "9735"
#- "9735"
ports:
- "8085:8080"
- "10001:10009"
- "9735:9735"
#- "9735:9735"

0 comments on commit 9183e3c

Please sign in to comment.