Sign inSign up

osminogin/flower

By osminogin

Updated over 8 years ago

Latest flower monitoring for Celery

Image
0

1.1K

osminogin/flower repository overview

docker-flower

License: MIT

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/

Getting started

Installation

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
Quickstart
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).

Ports

  • 5555 - Flower WebUI.

Unit file for systemd

flower.service
[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

License

MIT

Tag summary

Content type

Image

Digest

Size

48 MB

Last updated

over 8 years ago

docker pull osminogin/flower