flower
flower copied to clipboard
Version 1.1.0 is not accessible in Docker
In Docker Hub, latest version is 1.0.0. Could you upload the latest version (1.1.0) to Docker Hub ?
I was just about to open an issue about this myself.
In addition to updating latest, can you please also add explicit version tags for the new versions?
I'd like to use version 1.1.0 as mher/flower:1.1.0 and not mher/flower:latest or mher/flower:master so that the image I use remains the same (pinned) when you update things.
Thanks man!
This is still confusing btw. If master is the latest version, that should changed with latest.
I don't think it's the latest stable version.
From my understanding it's automatically generated when a PR is merged into the master branch.
What should happen here is:
- A
1.0.0image should be added. I think that's whatlatestis right now, so it should be renamed. - A
1.1.0image should be added. latestshould be set to the1.1.0image.- Whenever a new version of Flower is released, a corresponding image should be created and
latestchanged to point to it.
Wait, why did you close it? They haven't done this yet.
As I see, they are not active in Issues tab but, i will still not close this issue.
I have exactly same problems with you.
Excellent, thanks for reopening. Even if they don't look here much, it should still be listed as an open issue. As it stands, we currently need to check out the latest release and create the image ourselves, which is pretty ridiculous honestly. I hope they do add this. Should be a quick and easy thing to do.
version: "3.5" services: flower: hostname: flower image: python:3.9 container_name: flower ports: - "5555:5555" environment: - CELERY_BROKER_URL=pyamqp://username:pasword@rabbitmq-ip:5672// - CELERY_RESULT_BACKEND=redis://username:password@redis-ip:6379 - FLOWER_PORT=5555 command: > sh -c "pip install --user --upgrade pip && pip install --user celery flower && python -m celery --broker=$$CELERY_BROKER_URL --result-backend=$$CELERY_RESULT_BACKEND flower --port=$$FLOWER_PORT"
We found a solution like this. You can use this with flower 1.1.0. It works.
Thanks for this. It's unfortunate that many people will use the vulnerable version and have no idea.
Vulnerable version?
Now, version 1.2.0 is available: https://hub.docker.com/r/mher/flower/tags
Excellent, thank you. =) I'd still add the 1.1.0 and 1.0.0 versions in case people want to use them, but at least now there's a pinned updated version available. Good job. :+1: