Scenario:
I use docker compose and i can't send notification minio
to rabbitMQ
I have the following rabbitmq.yml
version: '2'
services:
rabbitmq:
image: rabbitmq:3-management
ports:
# the management port
- 5672:5672
- 15672:15672
# the stomp port
- 61613:61613
and the following minio.yml
version: '2'
services:
minio:
image: 'bitnami/minio:latest'
ports:
- '9000:9000'
environment:
- MINIO_NOTIFY_AMQP_ENABLE=on
- MINIO_NOTIFY_AMQP_URL='amqp://guest:guest@192.168.1.2:15672'
volumes:
- 'minio_data:/data'
volumes:
minio_data:
driver: local
The problem is:
when i upload new file in minio
server i don't receive notification in rabbitMQ
.
I've already tried to change IP in MINIO_NOTIFY_AMQP_URL
param to 127.0.0.1 but no result.
Is there a way to configure my docker-compose file (minio.yml
, rabbit.yml
) .