fmartingr
/
jeeves
Archived
1
0
Fork 0
This repository has been archived on 2021-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
jeeves/docker-compose.yml

29 lines
401 B
YAML

version: "3"
services:
backend:
build: .
restart: always
volumes:
- .:/opt/app
ports:
- 8000:8000
depends_on:
- redis
env_file:
- .env
redis:
image: redis:5
worker:
build: .
restart: always
command: poetry run python manage.py rundramatiq
volumes:
- .:/opt/app
depends_on:
- redis
env_file:
- .env