
this simply makes the source file match the installed name of the script. Change-Id: I5e7296780a34f36e28419b49e185be689e4745ad
9 lines
245 B
Docker
9 lines
245 B
Docker
FROM kollaglue/fedora-rdo-base
|
|
MAINTAINER Lars Kellogg-Stedman <lars@redhat.com>
|
|
|
|
RUN yum -y install rabbitmq-server; yum clean all
|
|
ADD rabbitmq.config /etc/rabbitmq/
|
|
ADD rabbitmq-env.conf /etc/rabbitmq/
|
|
ADD start.sh /start.sh
|
|
CMD ["/start.sh"]
|