Skip to content
Permalink
f30d47e419
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
13 lines (8 sloc) 399 Bytes
FROM tier/rabbitmq:latest
COPY container_files/etc-rabbitmq/* /etc/rabbitmq/
COPY container_files/usr-local-bin/* /usr/local/bin/
ENV RABBITMQ_PID_FILE=/var/run/rabbitmq/pid
# Must be on /var/lib/rabbitmq (this is the same place where queues are defined)
ENV RABBITMQ_INIT_DONE_FILE=/var/lib/rabbitmq/initialization.done
ENTRYPOINT ["/usr/local/bin/demo-entrypoint.sh"]
CMD ["rabbitmq-server"]