d30f69bc83
This represents making build-docker-images --release build with the icehouse tag and causes docker-compsoe to pull from the icehouse tag. Partially-implements: blueprint port-kilo Change-Id: I66b2c39abc55c0f47152dd90e696fc46b9c58f50
19 lines
508 B
Docker
19 lines
508 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
# Install required packages
|
|
RUN yum -y install rabbitmq-server hostname && yum clean all
|
|
|
|
# Run the management plugin
|
|
RUN /usr/lib/rabbitmq/bin/rabbitmq-plugins enable rabbitmq_management
|
|
|
|
# Copy Rabbit conf files
|
|
ADD rabbitmq.config /etc/rabbitmq/
|
|
ADD rabbitmq-env.conf /etc/rabbitmq/
|
|
|
|
# Copy start-up script
|
|
ADD start.sh /start.sh
|
|
|
|
# Start Rabbit through the start script
|
|
CMD ["/start.sh"]
|