Flower monitoring interface for your queues based on RabbitMQ or Redis.
Star this container on Docker Hub :star2: https://hub.docker.com/r/osminogin/flower/
Automated builds of the image are available on Docker Hub and is the recommended method of installation.
docker pull osminogin/flower
Alternatively you can build the image yourself.
docker build -t flower github.com/osminogin/docker-flower
docker run --rm --name flower \
--publish 127.0.0.1:5555:5555 \
--link redis:redishost \
osminogin/flower --broker redis://redishost
After start Flower available on localhost:5555
:exclamation:Warning:exclamation:
Don't bind Flower management interface port 5555 to public network addresses if you don't know exactly what you are doing (better bind to localhost as in the example above).
5555 - Flower WebUI.[Unit]
Description=Flower service
After=docker.service rabbit.service
Requires=docker.service rabbit.service
[Service]
Restart=on-failure
RestartSec=60s
ExecStartPre=/usr/bin/docker pull osminogin/flower
ExecStart=/usr/bin/docker run --rm --name flower -p 127.0.0.1:5555:5555 --link rabbit:rabbit osminogin/flower --broker amqp://rabbit
ExecStop=/usr/bin/docker stop flower
[Install]
WantedBy=multi-user.target
MIT
Content type
Image
Digest
Size
48 MB
Last updated
over 8 years ago
docker pull osminogin/flower