Docker image: RabbitMQ with STOMP plugin enabled
10K+
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.
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:
admin / adminadmin / admin at localhost:61613Check that the container is ready:
docker logs -f rabbitmq-stomp
Stop and remove the container when you're done:
docker rm -f rabbitmq-stomp
| Port | Description |
|---|---|
5672 | AMQP (RabbitMQ's default port) |
15672 | RabbitMQ Management Web UI |
61613 | STOMP |
See the full tag list on DockerHub (tags follow the RabbitMQ version, e.g. 3 tracks the latest RabbitMQ 3.x release).
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
Content type
Image
Digest
sha256:0354b6a91…
Size
115.2 MB
Last updated
about 1 month ago
docker pull pcloud/rabbitmq-stomp