Skip to content

Instantly share code, notes, and snippets.

@kannanhassouna
Created August 2, 2025 20:20
Show Gist options
  • Select an option

  • Save kannanhassouna/2e0207d69174f0ce8028daea7c964c35 to your computer and use it in GitHub Desktop.

Select an option

Save kannanhassouna/2e0207d69174f0ce8028daea7c964c35 to your computer and use it in GitHub Desktop.
services:
# Celery worker
worker:
build:
context: .
dockerfile: Dockerfile
environment:
- CELERY_BROKER_URL=amqps://bhiunjoe:[email protected]/bhiunjoe
- CELERY_LOG_LEVEL=INFO
- CELERY_QUEUES=quote-parser-ai
- LOG_LEVEL=INFO
- LOG_FILE=logs/app.log
- UPLOAD_DIR=uploads
- OUTPUT_DIR=output
- AWS_ACCESS_KEY_ID=test
- AWS_SECRET_ACCESS_KEY=test
- AWS_S3_REGION_NAME=us-east-1
- AWS_STORAGE_BUCKET_NAME=hit-local
- AWS_STORAGE_BUCKET_PATH_PREFIX=summary_reports
- AWS_S3_ENDPOINT_URL=http://host.docker.internal:4566
volumes:
- ./output:/app/output
- ./logs:/app/logs
- ./:/app/
command: ["celery"]
volumes:
rabbitmq_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment