mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 21:10:42 +02:00
134 lines
4.4 KiB
YAML
134 lines
4.4 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
lnd_bitcoin:
|
|
image: btcpayserver/lnd:v0.18.4-beta
|
|
container_name: btcpayserver_lnd_bitcoin
|
|
restart: unless-stopped
|
|
environment:
|
|
LND_CHAIN: "btc"
|
|
LND_EXTERNALIP: ${BTCPAY_ANNOUNCEABLE_HOST}
|
|
LND_PORT: 9735
|
|
LND_ALIAS: ${LIGHTNING_ALIAS}
|
|
LND_ENVIRONMENT: "${NBITCOIN_NETWORK:-regtest}"
|
|
LND_READY_FILE: /root/.nbxplorer/btc_fully_synched
|
|
LND_REST_LISTEN_HOST: http://lnd_bitcoin:8080
|
|
LND_HOST_FOR_LOOP: 127.0.0.1:10009
|
|
LND_EXTRA_ARGS: |
|
|
restlisten=lnd_bitcoin:8080
|
|
rpclisten=127.0.0.1:10008
|
|
rpclisten=lnd_bitcoin:10009
|
|
rpclisten=127.0.0.1:10009
|
|
bitcoin.node=bitcoind
|
|
bitcoind.rpchost=bitcoind:43782
|
|
bitcoind.rpcuser=lnd
|
|
bitcoind.rpcpass=afixedpasswordbecauselndsuckswithcookiefile
|
|
bitcoind.zmqpubrawblock=tcp://bitcoind:28332
|
|
bitcoind.zmqpubrawtx=tcp://bitcoind:28333
|
|
adminmacaroonpath=/data/admin.macaroon
|
|
invoicemacaroonpath=/data/invoice.macaroon
|
|
readonlymacaroonpath=/data/readonly.macaroon
|
|
tlsextradomain=lnd_bitcoin
|
|
no-rest-tls=1
|
|
protocol.wumbo-channels=1
|
|
ports:
|
|
- "9735:9735"
|
|
expose:
|
|
- "8080"
|
|
- "8081"
|
|
- "9735"
|
|
volumes:
|
|
- "lnd_bitcoin_datadir:/data"
|
|
- "lndloop_bitcoin_datadir:/root/.loop/${NBITCOIN_NETWORK:-regtest}"
|
|
- "bitcoin_datadir:/deps/.bitcoin"
|
|
- "nbxplorer_datadir:/root/.nbxplorer"
|
|
links:
|
|
- bitcoind
|
|
|
|
bitcoin_rtl:
|
|
image: shahanafarooqui/rtl:v0.15.4
|
|
container_name: generated_lnd_bitcoin_rtl_1
|
|
restart: unless-stopped
|
|
environment:
|
|
LND_SERVER_URL: http://lnd_bitcoin:8080/v1
|
|
MACAROON_PATH: /etc/lnd
|
|
SWAP_SERVER_URL: https://lnd_bitcoin:8081/v1
|
|
SWAP_MACAROON_PATH: /etc/lndloop
|
|
RTL_CONFIG_PATH: /data/
|
|
LND_CONFIG_PATH: /etc/lnd/lnd.conf
|
|
BITCOIND_CONFIG_PATH: /etc/bitcoin/bitcoin.conf
|
|
RTL_SSO: 1
|
|
RTL_COOKIE_PATH: /data/.cookie
|
|
LOGOUT_REDIRECT_LINK: /server/services
|
|
volumes:
|
|
- "bitcoin_datadir:/etc/bitcoin"
|
|
- "lnd_bitcoin_datadir:/etc/lnd"
|
|
- "lnd_bitcoin_datadir:/root/.lnd"
|
|
- "lndloop_bitcoin_datadir:/etc/lndloop"
|
|
- "lnd_bitcoin_rtl_datadir:/data"
|
|
expose:
|
|
- "3000"
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.bitcoin_rtl.rule: Host(`${BTCPAY_HOST}`) && (Path(`/rtl`) || PathPrefix(`/rtl/`))
|
|
links:
|
|
- lnd_bitcoin
|
|
|
|
btcpayserver:
|
|
environment:
|
|
BTCPAY_BTCLIGHTNING: "type=lnd-rest;server=http://lnd_bitcoin:8080/;macaroonfilepath=/etc/lnd_bitcoin/admin.macaroon;allowinsecure=true"
|
|
BTCPAY_BTCEXTERNALRTL: "server=/rtl/api/authenticate/cookie;cookiefile=/etc/lnd_bitcoin_rtl/.cookie"
|
|
BTCPAY_BTCEXTERNALLNDGRPC: "server=/;macaroonfilepath=/etc/lnd_bitcoin/admin.macaroon;macaroondirectorypath=/etc/lnd_bitcoin"
|
|
BTCPAY_BTCEXTERNALLNDREST: "server=/lnd-rest/btc/;macaroonfilepath=/etc/lnd_bitcoin/admin.macaroon;macaroondirectorypath=/etc/lnd_bitcoin"
|
|
BTCPAY_BTCEXTERNALLNDSEEDBACKUP: "/etc/lnd_bitcoin/data/chain/bitcoin/${NBITCOIN_NETWORK:-regtest}/walletunlock.json"
|
|
volumes:
|
|
- "lnd_bitcoin_datadir:/etc/lnd_bitcoin"
|
|
- "lnd_bitcoin_rtl_datadir:/etc/lnd_bitcoin_rtl"
|
|
links:
|
|
- lnd_bitcoin
|
|
|
|
bitcoind:
|
|
environment:
|
|
BITCOIN_EXTRA_ARGS: |
|
|
# rpcuser=lnd
|
|
# rpcpassword=afixedpasswordbecauselndsuckswithcookiefile
|
|
# We need to use rpcauth because we also need cookieauth. rpcpassword disabled cookie file auth.
|
|
# Be careful if you copy the line below from the docker-compose.yml! A dollar sign is escaped.
|
|
rpcauth=lnd:d031f7567c5b02ba95524170e51c77f4$$827ce5412f653d6613c2f480e521eb437c866b999bdeb2ee4f9c41d3b00dff1c
|
|
|
|
nginx:
|
|
links:
|
|
- "lnd_bitcoin"
|
|
volumes:
|
|
- "lnd_bitcoin_datadir:/lnd"
|
|
nginx-gen:
|
|
links:
|
|
- "lnd_bitcoin"
|
|
volumes:
|
|
- "lnd_bitcoin_datadir:/lnd"
|
|
|
|
mempool_api:
|
|
environment:
|
|
LIGHTNING_ENABLED: "true"
|
|
LIGHTNING_BACKEND: "lnd"
|
|
LND_TLS_CERT_PATH: "/etc/lnd/tls.cert"
|
|
LND_MACAROON_PATH: "/etc/lnd/readonly.macaroon"
|
|
LND_REST_API_URL: "http://lnd_bitcoin:8080"
|
|
LND_TIMEOUT: 1000000
|
|
volumes:
|
|
- "lnd_bitcoin_datadir:/etc/lnd"
|
|
|
|
mempool_web:
|
|
environment:
|
|
LIGHTNING: "true"
|
|
|
|
volumes:
|
|
lnd_bitcoin_datadir:
|
|
lndloop_bitcoin_datadir:
|
|
lnd_bitcoin_rtl_datadir:
|
|
|
|
required:
|
|
- "opt-add-zmq"
|
|
exclusive:
|
|
- lightning
|