Created
August 2, 2025 20:20
-
-
Save kannanhassouna/2e0207d69174f0ce8028daea7c964c35 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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