1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:50 +02:00
dockerfiles/flower/README.md

23 lines
415 B
Markdown
Raw Normal View History

2019-02-18 10:18:50 +02:00
flower
======
[Flower][1] is a web based tool for monitoring and administrating Celery clusters.
2019-06-12 00:59:15 +02:00
## docker-compose.yml
```yaml
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
```
2019-02-18 10:18:50 +02:00
[1]: https://flower.readthedocs.io/en/latest/