mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 21:10:42 +02:00

* Mark BlueWallet LNDhub fragment as deprecated See https://github.com/btcpayserver/btcpayserver/issues/6070#issuecomment-2205892096 * Add deprecated flag and skip those images in README generator * Update generated files
41 lines
1.6 KiB
YAML
41 lines
1.6 KiB
YAML
version: "3"
|
|
# DO NOT USE THOSE ARE DEPRECATED
|
|
services:
|
|
bluewallet_lndhub_redis:
|
|
container_name: bluewallet_lndhub_redis
|
|
image: "redis:6.2.2-buster@sha256:e10f55f92478715698a2cef97c2bbdc48df2a05081edd884938903aa60df6396"
|
|
command: "redis-server --requirepass S7bk49NBp29khUci4Zw28vsBviCnYfZ2QLTEsQNizq9ni5ur"
|
|
restart: "on-failure"
|
|
stop_grace_period: "1m"
|
|
volumes:
|
|
- "bluewallet_lndhub_redisdir:/data"
|
|
|
|
bluewallet_lndhub_app:
|
|
container_name: bluewallet_lndhub_app
|
|
image: "bluewalletorganization/lndhub:v1.4.1"
|
|
user: "0:0"
|
|
depends_on: [ "bluewallet_lndhub_redis" ]
|
|
restart: "on-failure"
|
|
stop_grace_period: "1m"
|
|
volumes:
|
|
- "lnd_bitcoin_datadir:/lnd:ro"
|
|
environment:
|
|
PORT: "3000"
|
|
LND_CERT_FILE: "/lnd/tls.cert"
|
|
LND_ADMIN_MACAROON_FILE: "/lnd/admin.macaroon"
|
|
CONFIG: '{ "rateLimit": 10000, "postRateLimit": 10000, "redis": { "port": 6379, "host": "bluewallet_lndhub_redis", "family": 4, "password": "S7bk49NBp29khUci4Zw28vsBviCnYfZ2QLTEsQNizq9ni5ur", "db": 0 }, "lnd": { "url": "lnd_bitcoin:10009", "password": ""}}'
|
|
# overrides to fix file permissions, see original: https://github.com/BlueWallet/LndHub/blob/master/Dockerfile
|
|
entrypoint: "bash"
|
|
command: -c "cp /lnd/tls.cert /lnd/admin.macaroon /lndhub/ && cd /lndhub && chown lndhub:lndhub admin.macaroon tls.cert && npm start"
|
|
|
|
btcpayserver:
|
|
environment:
|
|
BTCPAY_EXTERNALSERVICES: "Blue Wallet LNDHub:${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/bluewallet_lndhub_app;"
|
|
|
|
# use docker native volumes
|
|
volumes:
|
|
bluewallet_lndhub_redisdir:
|
|
|
|
required:
|
|
- "bitcoin-lnd"
|