You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
801 B

6 years ago
version: "3"
services:
btcqbo:
image: jvandrew/btcqbo:0.2.11
6 years ago
environment:
REDIS_URL: "redis://redis:6379/0"
BTCPAY_HOST: ${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}
CALLBACK_URL: ${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/btcqbo/qbologged
6 years ago
expose:
6 years ago
- "8001"
6 years ago
links:
- redis
6 years ago
rq-worker:
image: jvandrew/btcqbo:0.2.11
6 years ago
entrypoint: /usr/local/bin/rq
command: worker -u redis://redis:6379/0 btcqbo
environment:
REDIS_URL: "redis://redis:6379/0"
expose:
- "8001"
6 years ago
links:
- redis
6 years ago
redis:
6 years ago
image: redis:5.0.2-alpine
expose:
- "6379"
6 years ago
volumes:
- "redis_datadir:/data"
6 years ago
btcpayserver:
environment:
BTCPAY_EXTERNALSERVICES: "Quickbooks Online Connector:btcqbo;"
6 years ago
volumes:
redis_datadir: