1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00

add flower

This commit is contained in:
kev 2019-02-18 16:18:50 +08:00
parent 4f92ff0a3a
commit 5540ae7029
3 changed files with 17 additions and 0 deletions

@ -259,6 +259,7 @@ A collection of delicious docker recipes.
- [x] drupal
- [x] elastalert
- [x] elk
- [x] mher/flower
- [x] ghost
- [x] gitlab/gitlab-ce
- [x] gliderlabs/logspout

6
flower/README.md Normal file

@ -0,0 +1,6 @@
flower
======
[Flower][1] is a web based tool for monitoring and administrating Celery clusters.
[1]: https://flower.readthedocs.io/en/latest/

10
flower/docker-compose.yml Normal file

@ -0,0 +1,10 @@
flower:
image: mher/flower
ports:
- "5555:5555"
environment:
- CELERY_BROKER_URL=redis://redis:6379/0
- FLOWER_BASIC_AUTH=username:password
extra_hosts:
- redis:x.x.x.x
restart: always