Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/networld-to/docker-rabbitmq
Networld RabbitMQ Docker Image
https://github.com/networld-to/docker-rabbitmq
Last synced: about 2 months ago
JSON representation
Networld RabbitMQ Docker Image
- Host: GitHub
- URL: https://github.com/networld-to/docker-rabbitmq
- Owner: networld-to
- Created: 2013-12-29T18:28:46.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-28T10:42:14.000Z (over 10 years ago)
- Last Synced: 2023-08-07T17:12:50.242Z (over 1 year ago)
- Language: Shell
- Homepage: http://a.networld.to
- Size: 168 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-rabbitmq
## Getting Started
Get the image via index.docker.io
$ docker pull networld/rabbitmq
or build from source
$ IMAGE_NAME=networld/rabbitmq
$ docker build -rm -t ${IMAGE_NAME} .Start a container with:
$ docker run --name rabbitmq -p 127.0.0.1:5672:5672 -p 127.0.0.1:15672:15672 -d $IMAGE_NAME
# Only admin web interface on host
$ docker run --name rabbitmq -p 127.0.0.1:15672:15672 -d $IMAGE_NAMEUse rabbitmq from other container:
$ docker run --link=rabbitmq:service -i -t ubuntu /bin/bash
$ echo $SERVICE_PORT_5672_TCP_PORT
$ echo $SERVICE_PORT_5672_TCP_ADDR## License
The Sigimera Copyright (c) 2013 - 2014 by
[Sigimera Ltd.](http://www.sigimera.com)## Warranty
This software is provided "as is" and without any express or implied
warranties, including, without limitation, the implied warranties of
merchantability and fitness for a particular purpose.