2019-02-09 19:42:36 +04:00
|
|
|
version: '3.3'
|
|
|
|
services:
|
|
|
|
pgadmin:
|
|
|
|
image: dpage/pgadmin4
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
env_file:
|
|
|
|
- env-pgadmin.env
|
|
|
|
proxy:
|
|
|
|
image: traefik:v1.7
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
flower:
|
2020-02-07 12:04:02 -08:00
|
|
|
image: mher/flower
|
2019-02-09 19:42:36 +04:00
|
|
|
env_file:
|
|
|
|
- env-flower.env
|
2020-02-07 12:04:02 -08:00
|
|
|
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//"
|