Last active
August 29, 2015 14:05
-
-
Save markllama/61b1b25cb384ad25689f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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