Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 486 Bytes

README.MD

File metadata and controls

23 lines (18 loc) · 486 Bytes

Celery on AWS ECS examples

This repository contains examples with configuration and approaches to successfully run Celery on AWS ECS.

Running examples

Run examples with docker-compose:

$ docker-compose up --build -d

Open web app localhost:8004

You can trigger the jobs by clicking on links.

Check worker logs:

$ docker-compose logs -f worker

Run multiple workers:

$ export WORKER_REPLICAS=3
$ docker-compose up --build -d