Docker for celery flower with python3 and alpine linux
2.8K
This is a flower docker, and use redis for broker
Use the command below:
docker run -d --name=flower -p 5555:5555 playniuniu/flower
The default redis url is redis://redis:6379/0.
If you try to use other redis url, you should run:
docker run -d --name=flower -p 5555:5555 -e REDIS_BROKER="YOUR_REDIS_URL" playniuniu/flower
For other advanced useage, you should run:
docker run -d --name=flower -p 5555:5555 playniuniu/flower flower --port=5555 --broker=redis://redis:6379/0
Content type
Image
Digest
Size
31.2 MB
Last updated
almost 10 years ago
docker pull playniuniu/flower