Files
boc/iom/docker-compose.override.yml
T

28 lines
548 B
YAML
Raw Normal View History

# Development override
version: '3.8'
services:
api:
volumes:
- .:/app
environment:
- ENVIRONMENT=development
- DEBUG=true
- LOG_LEVEL=DEBUG
command: uvicorn api.main:app --host 0.0.0.0 --port 8000 --reload
worker:
volumes:
- .:/app
environment:
- ENVIRONMENT=development
- LOG_LEVEL=DEBUG
command: celery -A tasks worker --loglevel=debug
beat:
volumes:
- .:/app
environment:
- ENVIRONMENT=development
command: celery -A tasks beat --loglevel=debug