Merge remote-tracking branch 'btcpayserver/master' into grs-clightning

This commit is contained in:
Andrew Camilleri
2018-12-06 13:34:18 +01:00
9 changed files with 133 additions and 39 deletions

View File

@@ -2,7 +2,7 @@ version: "3"
services:
lnd_bitcoin:
image: btcpayserver/lnd:0.5-beta-2
image: btcpayserver/lnd:v0.5-beta-3
container_name: btcpayserver_lnd_bitcoin
restart: unless-stopped
environment:

View File

@@ -4,7 +4,7 @@ services:
btcpayserver:
restart: unless-stopped
image: ${BTCPAY_IMAGE:-btcpayserver/btcpayserver:1.0.3.23}
image: ${BTCPAY_IMAGE:-btcpayserver/btcpayserver:1.0.3.25}
expose:
- "49392"
environment:

View File

@@ -2,7 +2,7 @@ version: "3"
services:
lnd_litecoin:
image: btcpayserver/lnd:0.5-beta-2
image: btcpayserver/lnd:v0.5-beta-3
container_name: btcpayserver_lnd_litecoin
restart: unless-stopped
environment:

View File

@@ -0,0 +1,32 @@
version: "3"
services:
btcqbo:
image: jvandrew/btcqbo:0.1.1
environment:
REDIS_URL: "redis://redis:6379/0"
BTCPAY_HOST: ${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}
CALLBACK_URL: ${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/btcqbo/qbologged
expose:
- "8001"
links:
- redis
rq-worker:
image: jvandrew/btcqbo:0.1.1
entrypoint: /usr/local/bin/rq
command: worker -u redis://redis:6379/0 btcqbo
environment:
REDIS_URL: "redis://redis:6379/0"
expose:
- "8001"
links:
- redis
redis:
image: redis:5.0.2-alpine
expose:
- "6379"
volumes:
- "redis_datadir:/data"
volumes:
redis_datadir: