Sign inSign up

pcloud/rabbitmq-stomp

By pcloud

Updated about 1 month ago

Docker image: RabbitMQ with STOMP plugin enabled

Image
2

10K+

pcloud/rabbitmq-stomp repository overview

RabbitMQ + STOMP Docker Image

ci Docker Stars Docker Pulls

A RabbitMQ Docker image (with Management UI) that ships with the STOMP plugin already enabled and default credentials pre-configured — ready to run, no need to enable the plugin or edit rabbitmq.conf yourself.

Handy for dev/test environments that need a message broker with STOMP support (e.g. integrating with a JS/web client via Stomp.js or SockJS) without building your own image.

Quick start

docker pull pcloud/rabbitmq-stomp:latest

docker container run -d --name rabbitmq-stomp \
  -p 15672:15672 -p 5672:5672 -p 61613:61613 \
  pcloud/rabbitmq-stomp:latest

Once the container is running:

Check that the container is ready:

docker logs -f rabbitmq-stomp

Stop and remove the container when you're done:

docker rm -f rabbitmq-stomp
Exposed ports
PortDescription
5672AMQP (RabbitMQ's default port)
15672RabbitMQ Management Web UI
61613STOMP
Image tags

See the full tag list on DockerHub (tags follow the RabbitMQ version, e.g. 3 tracks the latest RabbitMQ 3.x release).

Customizing the configuration

The image ships with a default rabbitmq.conf using the admin/admin credentials and STOMP enabled on port 61613. To use your own config, mount your rabbitmq.conf over it at runtime:

docker container run -d --name rabbitmq-stomp \
  -p 15672:15672 -p 5672:5672 -p 61613:61613 \
  -v $(pwd)/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf \
  pcloud/rabbitmq-stomp:latest

Tag summary

Content type

Image

Digest

sha256:0354b6a91

Size

115.2 MB

Last updated

about 1 month ago

docker pull pcloud/rabbitmq-stomp