chore: bump thunderhub (#414)

This commit is contained in:
Anthony Potdevin 2020-12-18 06:14:49 +01:00 committed by GitHub
parent 4f7f1a7084
commit 8cc53e9932
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -40,9 +40,8 @@
} }
{{ end }} {{ end }}
{{ if (eq $serviceName "bitcoin_thub") }} {{ if (eq $serviceName "bitcoin_thub") }}
location /thub/ { location /thub {
rewrite ^/thub(.*)$ $1 break; proxy_pass http://bitcoin_thub:3000/thub;
proxy_pass http://bitcoin_thub:3000/;
} }
{{ end }} {{ end }}
{{ if (eq $serviceName "btcqbo") }} {{ if (eq $serviceName "btcqbo") }}

View File

@ -6,11 +6,10 @@ services:
volumes: volumes:
- "lnd_bitcoin_thub_datadir:/etc/lnd_bitcoin_thub_datadir" - "lnd_bitcoin_thub_datadir:/etc/lnd_bitcoin_thub_datadir"
bitcoin_thub: bitcoin_thub:
image: apotdevin/thunderhub:v0.11.0 image: apotdevin/thunderhub:base-v0.12.0
restart: unless-stopped restart: unless-stopped
stop_signal: SIGKILL stop_signal: SIGKILL
environment: environment:
BASE_PATH: "/thub"
NO_VERSION_CHECK: "true" NO_VERSION_CHECK: "true"
COOKIE_PATH: "/data/.cookie" COOKIE_PATH: "/data/.cookie"
SSO_SERVER_URL: "lnd_bitcoin:10009" SSO_SERVER_URL: "lnd_bitcoin:10009"
@ -18,6 +17,7 @@ services:
SSO_CERT_PATH: "/etc/lnd/tls.cert" SSO_CERT_PATH: "/etc/lnd/tls.cert"
NO_CLIENT_ACCOUNTS: "true" NO_CLIENT_ACCOUNTS: "true"
LOG_LEVEL: debug LOG_LEVEL: debug
LOGOUT_URL: "/server/services/thunderhub/BTC"
volumes: volumes:
- "lnd_bitcoin_datadir:/etc/lnd" - "lnd_bitcoin_datadir:/etc/lnd"
- "lnd_bitcoin_thub_datadir:/data" - "lnd_bitcoin_thub_datadir:/data"