Skip to content

Instantly share code, notes, and snippets.

@markllama
Last active August 29, 2015 14:05
Show Gist options
  • Save markllama/61b1b25cb384ad25689f to your computer and use it in GitHub Desktop.
Save markllama/61b1b25cb384ad25689f to your computer and use it in GitHub Desktop.
FROM fedora:20
MAINTAINER Mark Lamourine <[email protected]>
#COMMENT { "description": "Qpid server image", \
# "usage": "docker run -d -p 5672:5672 --name pulp-qpid fedora/qpid" }
RUN yum install -y qpid-cpp-server qpid-cpp-server-store python-qpid-qmf python-qpid && \
yum clean all
ADD . /.qpidd
WORKDIR /.qpidd
EXPOSE 5672
ENTRYPOINT ["/usr/bin/qpidd", "-t", "--auth=no"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment