mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-06-04 23:17:31 +02:00
add flower
This commit is contained in:
parent
4f92ff0a3a
commit
5540ae7029
@ -259,6 +259,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] drupal
|
- [x] drupal
|
||||||
- [x] elastalert
|
- [x] elastalert
|
||||||
- [x] elk
|
- [x] elk
|
||||||
|
- [x] mher/flower
|
||||||
- [x] ghost
|
- [x] ghost
|
||||||
- [x] gitlab/gitlab-ce
|
- [x] gitlab/gitlab-ce
|
||||||
- [x] gliderlabs/logspout
|
- [x] gliderlabs/logspout
|
||||||
|
6
flower/README.md
Normal file
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
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
|
Loading…
x
Reference in New Issue
Block a user