skip to Main Content

AWS Elastic Beanstalk with docker-compose.yml – Nginx

I am trying to deploy several services using AWS Elastic Beanstalk with Docker running on Amazon Linux 2 platform. Since, there are two services in my docker-compose.yml file: version: '3.8' services: beanstalk-flask: image: "anotheruserdocker/beanstalk-flask" ports: - "5000:5000" tasks: image: "xxxxx.dkr.ecr.us-east-1.amazonaws.com/xxx:xxx"…

VIEW QUESTION

Redis – How to change "transport" url in django celery config

I have django 3.2.7, celery 5.2.1, redis 3.5.3 I have next celery settings. (REDIS_PASSWORD) is env variable: CELERY_BROKER_URL = f'redis://:{REDIS_PASSWORD}@redis:6379/4' CELERY_BROKER_TRANSPORT_OPTIONS = {'visibility_timeout': 3600} CELERY_RESULT_BACKEND = f'redis://:{REDIS_PASSWORD}@redis:6379/1' CELERY_ACCEPT_CONTENT = ['application/json'] But when I start my docker-compose app, it shows me…

VIEW QUESTION
Back To Top
Search