Skip to content

Commit

Permalink
update flower
Browse files Browse the repository at this point in the history
  • Loading branch information
vimagick committed Jun 11, 2019
1 parent 92bfae7 commit 7695fde
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions flower/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,20 @@ 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/
1 change: 1 addition & 0 deletions flower/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ flower:
- "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
Expand Down

0 comments on commit 7695fde

Please sign in to comment.