forked from btcpayserver/btcpayserver-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opt-add-thunderhub.yml
32 lines (32 loc) · 1002 Bytes
/
opt-add-thunderhub.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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.11@sha256:248db7508af8d1563f3afdbaec2ffd62e6f1868e30f8f1c3bb514bf8633c44f9
restart: unless-stopped
stop_signal: SIGKILL
environment:
NO_VERSION_CHECK: "true"
COOKIE_PATH: "/data/.cookie"
ACCOUNT_CONFIG_PATH: "/data/thubConfig.yaml"
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"