Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Latest commit

 

History

History
41 lines (27 loc) · 790 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 790 Bytes

RabbitMq with AMQP 1.0

This is a development docker container, do not use in production.

Requirements

Development

  • Build the Docker container
docker build -t dealog/rabbitmq:latest .
  • Start the Docker container
docker run\
  --name dealog-rabbit\
  --hostname my-rabbit\
  --rm\
  -d\
  -p 5672:5672\
  -p 9090:15672\
  dealog/rabbitmq:latest

RabbitMQ Management

The management view is started and exposed on port 9090.

Open http://localhost:9090 in your web browser.

The initial username is as default guest , the default password is guest.

For more information and settings see Dockerhub RabbitMQ

Sources

[1] RabbitMQ