Merge pull request #5 from KoalaSat/fix-entrypoints

Fix entrypoints
This commit is contained in:
Reckless_Satoshi
2023-12-02 20:17:59 +00:00
committed by GitHub
3 changed files with 7 additions and 3 deletions

View File

@ -189,6 +189,10 @@ HiddenServicePort 22 127.0.0.1:22
# Management Services # Management Services
HiddenServiceDir /var/lib/tor/management/ HiddenServiceDir /var/lib/tor/management/
HiddenServiceVersion 3 HiddenServiceVersion 3
# Thunderhub
HiddenServicePort 3000 127.0.0.1:3000
# LIT
HiddenServicePort 4000 127.0.0.1:8443
# Cockpit # Cockpit
HiddenServicePort 1000 127.0.0.1:9090 HiddenServicePort 1000 127.0.0.1:9090
``` ```

View File

@ -6,7 +6,7 @@
## Edit the /home/user path directory and orchestration suffix (-lndmn) as needed ## Edit the /home/user path directory and orchestration suffix (-lndmn) as needed
## ROBOMAIN Docker-Compose (lndmn) ## ROBOMAIN Docker-Compose (lndmn)
alias mn="docker compose -p lndmain --env-file /home/$(whoami)/robosats-deploy/compose/env/lndmn/compose.env -f /home/$(whoami)/robosats-deploy/compose/docker-compose.lnd.yml -f /home/$(whoami)/robosats-deploy/compose/docker-compose.override-lnd.yml" alias mn="docker compose -p lndmain --env-file /home/$(whoami)/robosats-deploy/compose/env/lndmn/compose.env -f /home/$(whoami)/robosats-deploy/compose/docker-compose.yml -f /home/$(whoami)/robosats-deploy/compose/docker-compose.override-lnd.yml"
## Example usage: ## Example usage:
## Start orchestration ## Start orchestration

View File

@ -13,7 +13,7 @@ services:
- ${LND_DATA:?}:/root/.lnd - ${LND_DATA:?}:/root/.lnd
- ${LND_CONF:?}:/root/.lnd/lnd.conf - ${LND_CONF:?}:/root/.lnd/lnd.conf
- ${LND_AUTOUNLOCK_PWD:?}:/tmp/pwd:ro - ${LND_AUTOUNLOCK_PWD:?}:/tmp/pwd:ro
command: lnd entrypoint: lnd
environment: environment:
SUFFIX: ${SUFFIX} SUFFIX: ${SUFFIX}
LND_RPC_PORT: ${GUEST_LND_RPC_PORT:?} LND_RPC_PORT: ${GUEST_LND_RPC_PORT:?}
@ -41,7 +41,7 @@ services:
depends_on: depends_on:
- tor - tor
- lnd - lnd
command: litd --uipassword ${LIT_PASSWORD} --network=${NETWORK} --lnd-mode=remote --remote.lnd.rpcserver=127.0.0.1:${GUEST_LND_RPC_PORT:?} --remote.lnd.macaroonpath=/lnd/data/chain/bitcoin/${NETWORK}/admin.macaroon --remote.lnd.tlscertpath=/lnd/tls.cert --httpslisten=0.0.0.0:8443 --loop.server.proxy=127.0.0.1:9050 --loop.loopoutmaxparts=25 --loop.maxlsatfee=1 entrypoint: litd --uipassword ${LIT_PASSWORD} --network=${NETWORK} --lnd-mode=remote --remote.lnd.rpcserver=127.0.0.1:${GUEST_LND_RPC_PORT:?} --remote.lnd.macaroonpath=/lnd/data/chain/bitcoin/${NETWORK}/admin.macaroon --remote.lnd.tlscertpath=/lnd/tls.cert --httpslisten=0.0.0.0:8443 --loop.server.proxy=127.0.0.1:9050 --loop.loopoutmaxparts=25 --loop.maxlsatfee=1
volumes: volumes:
- ${LND_DATA:?}:/lnd/:ro - ${LND_DATA:?}:/lnd/:ro
- ${LIT_DATA:?}:/root/ - ${LIT_DATA:?}:/root/