mirror of
https://github.com/aljazceru/btcpayserver-docker.git
synced 2025-12-19 05:44:19 +01:00
Add spark integration
This commit is contained in:
@@ -309,10 +309,6 @@ server {
|
|||||||
proxy_pass http://lnd_bitcoin:8080/;
|
proxy_pass http://lnd_bitcoin:8080/;
|
||||||
}
|
}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ range $container := $ }}
|
|
||||||
{{ $serviceName := (index $container.Labels "com.docker.compose.service") }}
|
|
||||||
{{ if (eq $serviceName "btcqbo") }}
|
{{ if (eq $serviceName "btcqbo") }}
|
||||||
location /btcqbo/ {
|
location /btcqbo/ {
|
||||||
proxy_pass http://btcqbo:8001;
|
proxy_pass http://btcqbo:8001;
|
||||||
@@ -320,6 +316,11 @@ server {
|
|||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
}
|
||||||
|
{{ end }}
|
||||||
|
{{ if (eq $serviceName "clightning_bitcoin_spark") }}
|
||||||
|
location /spark/btc/ {
|
||||||
|
proxy_pass http://clightning_bitcoin_spark:9737/;
|
||||||
}
|
}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|||||||
@@ -27,12 +27,29 @@ services:
|
|||||||
links:
|
links:
|
||||||
- nbxplorer
|
- nbxplorer
|
||||||
- bitcoind
|
- bitcoind
|
||||||
|
clightning_bitcoin_spark:
|
||||||
|
image: shesek/spark-wallet:0.2.0-WIP
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||||
|
SPARK_OPT: --no-tls -C /data/.cookie
|
||||||
|
volumes:
|
||||||
|
- "clightning_bitcoin_datadir:/etc/lightning"
|
||||||
|
- "clightning_bitcoin_spark:/data"
|
||||||
|
links:
|
||||||
|
- clightning_bitcoin
|
||||||
|
expose:
|
||||||
|
- "9737"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_BTCLIGHTNING: "type=clightning;server=unix://etc/clightning_bitcoin/lightning-rpc"
|
BTCPAY_BTCLIGHTNING: "type=clightning;server=unix://etc/clightning_bitcoin/lightning-rpc"
|
||||||
|
BTCPAY_BTCEXTERNALSPARK: "server=${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}${BTCPAY_ROOTPATH:-/}spark/btc;cookiefile=/etc/clightning_bitcoin_spark/.cookie"
|
||||||
volumes:
|
volumes:
|
||||||
- "clightning_bitcoin_datadir:/etc/clightning_bitcoin"
|
- "clightning_bitcoin_datadir:/etc/clightning_bitcoin"
|
||||||
|
- "clightning_bitcoin_spark:/etc/clightning_bitcoin_spark"
|
||||||
links:
|
links:
|
||||||
- clightning_bitcoin
|
- clightning_bitcoin
|
||||||
volumes:
|
volumes:
|
||||||
clightning_bitcoin_datadir:
|
clightning_bitcoin_datadir:
|
||||||
|
clightning_bitcoin_spark:
|
||||||
@@ -4,7 +4,7 @@ services:
|
|||||||
|
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: ${BTCPAY_IMAGE:-btcpayserver/btcpayserver:1.0.3.28}
|
image: ${BTCPAY_IMAGE:-btcpayserver/btcpayserver:1.0.3.29}
|
||||||
expose:
|
expose:
|
||||||
- "49392"
|
- "49392"
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
Reference in New Issue
Block a user