mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
23 lines
415 B
Markdown
23 lines
415 B
Markdown
flower
|
|
======
|
|
|
|
[Flower][1] is a web based tool for monitoring and administrating Celery clusters.
|
|
|
|
## 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
|
|
```
|
|
|
|
[1]: https://flower.readthedocs.io/en/latest/
|