-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
celery flower service added #366
Conversation
ea3efcf
to
9099a51
Compare
deploy/start_flower.sh
Outdated
done | ||
|
||
echo 'Starting flower' | ||
celery -A ${PROJECT_NAME} flower --port=5555 --broker=redis://redis:6379/0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@deepakdinesh1123
do we need to pass broker
explicitly over here?
I think it will take the broker URL from CELERY_BROKER_URL
settings variable
9099a51
to
55c4438
Compare
deploy/docker_compose.dev.yml
Outdated
- postgres | ||
- redis | ||
- celery | ||
- celery_beat |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can remove celery_beat depedency
- "5555:5555" | ||
env_file: | ||
- .env | ||
volumes: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we run docker-compose down
and then docker-compose up
, the previous Flower data is lost. We need to use persistent volume to retain the data.
55c4438
to
5c29f9e
Compare
No description provided.