Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 415 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 415 Bytes

flower

Flower is a web based tool for monitoring and administrating Celery clusters.

docker-compose.yml

flower:
  image: mher/flower
  ports:
    - "5555:5555"
  environment:
    - CELERY_BROKER_URL=redis://redis:6379/0
    - FLOWER_PORT=5555
    - FLOWER_BASIC_AUTH=username:password
  extra_hosts:
    - redis:x.x.x.x
  restart: always