Browse Source
⬆ Upgrade Flower version and command (#447)
Co-authored-by: Mauro Bruni <mauro@satellogic.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
pull/13907/head
maurob
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
1 deletions
-
docker-compose.yml
|
@ -48,7 +48,7 @@ services: |
|
|
restart: always |
|
|
restart: always |
|
|
|
|
|
|
|
|
flower: |
|
|
flower: |
|
|
image: mher/flower:0.9.7 |
|
|
image: mher/flower:2.0 |
|
|
restart: always |
|
|
restart: always |
|
|
networks: |
|
|
networks: |
|
|
- traefik-public |
|
|
- traefik-public |
|
@ -58,7 +58,9 @@ services: |
|
|
environment: |
|
|
environment: |
|
|
- FLOWER_BASIC_AUTH=${FLOWER_BASIC_AUTH} |
|
|
- FLOWER_BASIC_AUTH=${FLOWER_BASIC_AUTH} |
|
|
command: |
|
|
command: |
|
|
|
|
|
- celery |
|
|
- "--broker=amqp://guest@queue:5672//" |
|
|
- "--broker=amqp://guest@queue:5672//" |
|
|
|
|
|
- flower |
|
|
# For the "Broker" tab to work in the flower UI, uncomment the following command argument, |
|
|
# For the "Broker" tab to work in the flower UI, uncomment the following command argument, |
|
|
# and change the queue service's image as well |
|
|
# and change the queue service's image as well |
|
|
# - "--broker_api=http://guest:guest@queue:15672/api//" |
|
|
# - "--broker_api=http://guest:guest@queue:15672/api//" |
|
|