Ref:
运行容器:
docker run -d --hostname my-rabbit --name some-rabbit rabbitmq:3
This will start a RabbitMQ container listening on the default port of 5672. If you give that a minute, then do docker logs some-rabbit, you’ll see in the output a block similar to:
=INFO REPORT==== 6-Jul-2015::20:47:02 ===node : rabbit@my-rabbithome dir : /var/lib/rabbitmqconfig file(s) : /etc/rabbitmq/rabbitmq.configcookie hash : UoNOcDhfxW9uoZ92wh6BjA==log : ttysasl log : ttydatabase dir : /var/lib/rabbitmq/mnesia/rabbit@my-rabbit
RabbitMQ with management
Ref: https://codeburst.io/get-started-with-rabbitmq-on-docker-4428d7f6e46b
docker run -d --hostname my-rabbit -p 15672:15672 -p 5672:5672 rabbitmq:3-management
admin console: http://localhost:15672/ guest:guest
