Reputation: 363
I am new docker world and I am attempting to access the RabbitMQ Management plugin on my windows 10. I am following this. But when I try "http://container-ip:15672 " I can not access to management.
Anyone has any experience with such problem?
Upvotes: 3
Views: 7999
Reputation: 359
If you started docker with
docker run -d --hostname my-rabbit --name some-rabbit rabbitmq:3-management
as described in the reference you mentioned, you might need to add a -p 15672:15672
to that command line in order to make the management port accessible from the host.
I just ran into the same problem as docker newbie on windows 10 and found that solution here.
Upvotes: 9