Skip to content

Docker image to run RabbitMQ with the STOMP plugin enabled

Notifications You must be signed in to change notification settings

resilva87/docker-rabbitmq-stomp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

docker-rabbitmq-stomp

A Dockerfile to run RabbitMQ with the STOMP plugin enabled.

This Dockerfile is based on the official RabbitMQ image so exported ports and volumes defined by it should also apply.

DockerHub

https://hub.docker.com/r/resilva87/docker-rabbitmq-stomp/

Using

sudo docker run -d -e RABBITMQ_NODENAME=my-rabbit --name rabbitmq -p 8080:15672 -p 61613:61613 resilva87/docker-rabbitmq-stomp

Exposed ports:

  • 15672 => RabbitMQ web management (http access)
  • 61613 => RabbitMQ STOMP broker port (transport)
  • 5672 => RabbitMQ default node port (transport)