🐛 Fix docker configuration for flower (#37)
This commit is contained in:
@@ -11,6 +11,11 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
flower:
|
flower:
|
||||||
image: totem/celery-flower-docker
|
image: mher/flower
|
||||||
env_file:
|
env_file:
|
||||||
- env-flower.env
|
- env-flower.env
|
||||||
|
command:
|
||||||
|
- "--broker=amqp://guest@queue:5672//"
|
||||||
|
# For the "Broker" tab to work in the flower UI, uncomment the following command argument,
|
||||||
|
# and change the queue service's image as described in docker-compose.shared.base-images.yml
|
||||||
|
# - "--broker_api=http://guest:guest@queue:15672/api//"
|
||||||
|
@@ -4,3 +4,7 @@ services:
|
|||||||
image: postgres:11
|
image: postgres:11
|
||||||
queue:
|
queue:
|
||||||
image: rabbitmq:3
|
image: rabbitmq:3
|
||||||
|
# Using the below image instead is required to enable the "Broker" tab in the flower UI:
|
||||||
|
# image: rabbitmq:3-management
|
||||||
|
#
|
||||||
|
# You also have to change the flower command as documented in docker-compose.shared.admin.yml
|
||||||
|
@@ -1,3 +1 @@
|
|||||||
FLOWER_BASIC_AUTH={{cookiecutter.flower_auth}}
|
FLOWER_BASIC_AUTH={{cookiecutter.flower_auth}}
|
||||||
AMQP_ADMIN_HOST=queue
|
|
||||||
AMQP_HOST=queue
|
|
||||||
|
Reference in New Issue
Block a user