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.

24 lines
476 B

6 years ago
version: "3"
services:
btcqbo:
image: jvandrew/btcqbo:0.1.0
6 years ago
environment:
REDIS_URL: "redis://redis:6379/0"
6 years ago
expose:
6 years ago
- "8001"
rq-worker:
image: jvandrew/btcqbo:0.1.0
entrypoint: /usr/local/bin/rq
command: worker -u redis://redis:6379/0 btcqbo
environment:
REDIS_URL: "redis://redis:6379/0"
expose:
- "8001"
redis:
6 years ago
image: redis:5.0.2-alpine
volumes:
- "redis_datadir:/data"
volumes:
redis_datadir: