32 lines
950 B
YAML
32 lines
950 B
YAML
version: "3"
|
|
services:
|
|
btcpayserver:
|
|
environment:
|
|
BTCPAY_BTCEXTERNALTHUNDERHUB: "server=/thub/sso;cookiefile=/etc/lnd_bitcoin_thub_datadir/.cookie"
|
|
volumes:
|
|
- "lnd_bitcoin_thub_datadir:/etc/lnd_bitcoin_thub_datadir"
|
|
bitcoin_thub:
|
|
image: apotdevin/thunderhub:base-v0.13.1@sha256:7b7a85f516be5c06ec0a4f76bc4d4dc2faf8f984f994ccc280b038520f42fa13
|
|
restart: unless-stopped
|
|
stop_signal: SIGKILL
|
|
environment:
|
|
NO_VERSION_CHECK: "true"
|
|
COOKIE_PATH: "/data/.cookie"
|
|
SSO_SERVER_URL: "lnd_bitcoin:10009"
|
|
SSO_MACAROON_PATH: "/etc/lnd"
|
|
SSO_CERT_PATH: "/etc/lnd/tls.cert"
|
|
NO_CLIENT_ACCOUNTS: "true"
|
|
LOG_LEVEL: debug
|
|
LOGOUT_URL: "/server/services/thunderhub/BTC"
|
|
volumes:
|
|
- "lnd_bitcoin_datadir:/etc/lnd"
|
|
- "lnd_bitcoin_thub_datadir:/data"
|
|
expose:
|
|
- "3000"
|
|
links:
|
|
- lnd_bitcoin
|
|
volumes:
|
|
lnd_bitcoin_thub_datadir:
|
|
required:
|
|
- "bitcoin-lnd"
|