Add lnbits container (#1173)

This commit is contained in:
ekzyis 2024-05-15 10:09:15 -05:00 committed by GitHub
parent 7090ea3b70
commit 47bfa24b57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 22 additions and 1 deletions

View File

@ -150,4 +150,7 @@ PERSISTENCE=1
SKIP_SSL_CERT_DOWNLOAD=1
# tor
TOR_PROXY=http://127.0.0.1:7050/
TOR_PROXY=http://127.0.0.1:7050/
# lnbits
LNBITS_WEB_PORT=5000

View File

@ -471,6 +471,24 @@ services:
- app
labels:
CONNECT: "localhost:8025"
lnbits:
image: lnbits/lnbits:0.12.5
container_name: lnbits
profiles:
- payments
restart: unless-stopped
ports:
- "${LNBITS_WEB_PORT}:5000"
depends_on:
- stacker_lnd
environment:
- LNBITS_BACKEND_WALLET_CLASS=LndWallet
- LND_GRPC_ENDPOINT=stacker_lnd
- LND_GRPC_PORT=10009
- LND_GRPC_CERT=/app/.lnd/tls.cert
- LND_GRPC_MACAROON=/app/.lnd/regtest/admin.macaroon
volumes:
- ./docker/lnd/stacker:/app/.lnd
volumes:
db:
os: