Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
Allow guest access
Browse files Browse the repository at this point in the history
  • Loading branch information
jplock committed Jun 22, 2014
1 parent 6b33100 commit 66fb067
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DOCKER-VERSION 0.9.0
# VERSION 0.4
# DOCKER-VERSION 1.0.1
# VERSION 0.5

FROM debian:jessie
MAINTAINER Justin Plock <justin@plock.net>
Expand All @@ -14,6 +14,7 @@ RUN echo "deb http://www.rabbitmq.com/debian/ testing main" > /etc/apt/sources.l
RUN apt-get update
RUN apt-get -y -q install rabbitmq-server
RUN /usr/sbin/rabbitmq-plugins enable rabbitmq_management
RUN echo "[{rabbit, [{loopback_users, []}]}]." > /etc/rabbitmq/rabbitmq.config

EXPOSE 5672 15672

Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ docker-rabbitmq

Builds a docker image for RabbitMQ.

```docker run -d -h localhost jplock/rabbitmq```
```docker build -t <user>/rabbitmq```

Run the container:

```docker run -d -h localhost -p 5672:5672 -p 15672:15672 jplock/rabbitmq```

0 comments on commit 66fb067

Please sign in to comment.