How to open rabbitmq in browser using docker container?

后端 未结 8 733
清酒与你
清酒与你 2020-12-23 08:57

This was probably asked already, but so far I can\'t find any detailed explanation at all, and the existing documentation seems as if it was written for some kind on psychic

8条回答
  •  死守一世寂寞
    2020-12-23 09:41

    Better to expose all three ports (5672, 5673, 15672).

    docker run -d --name some-rabbit -p 5672:5672 -p 5673:5673 -p 15672:15672 rabbitmq:3-management  
    

    Then you may browse, http://localhost:15672/ with the credentials "guest" for both the username and the password.

提交回复
热议问题