I'm running celery-worker and celery-beat inside docker.
When I do celery logs -f celery-worker
I can see the celery is up and running
Now I want to send some tasks (for test purposes) to the worker..
There seems to be two ways to do that (How can I run a celery periodic task from the shell manually?)
using django shell
and using celery
command itself
I don't have manage.py in the docker, so I'm using the celery
command
However, all celery commands including celery inspect registered
hangs and gives me nothing.
How can I send tasks to celery running inside docker?