Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pokle/rabbitmq
A Docker container to run rabbitmq
https://github.com/pokle/rabbitmq
Last synced: 10 days ago
JSON representation
A Docker container to run rabbitmq
- Host: GitHub
- URL: https://github.com/pokle/rabbitmq
- Owner: pokle
- Created: 2014-03-19T11:55:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-03-19T11:58:57.000Z (over 10 years ago)
- Last Synced: 2023-03-11T00:19:15.239Z (over 1 year ago)
- Language: Shell
- Size: 125 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
RabbitMQ for Docker based on Phusion's awesome baseimage for managebility
Quickstart
----------Start a container, exposing RabbitMQ's ports to the outside host
docker run -i -t -p 5672:5672 -p 55672:55672 poklet/rabbitmq
Now publish and consume a message to it.
# Install a simple client - https://github.com/alanxz/rabbitmq-c
brew install rabbitmq-c# This is where my container was available
OPTS=--url=amqp://192.168.67.142:5672# Send and consume a message to a queue
amqp-declare-queue $OPTS --queue=sample-queue
amqp-publish $OPTS --routing-key=sample-queue --body=hey
amqp-get $OPTS --queue=sample-queueThat should print out 'hey'
Security
--------
In its current form, as evidenced by the example above, there are no passwords!