Skip to content

Files

Latest commit

7695fde · Jun 11, 2019

History

History

flower

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 11, 2019
Jun 11, 2019

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