mirror of
https://github.com/elyby/accounts.git
synced 2024-11-13 08:46:17 +05:30
11 lines
251 B
Docker
11 lines
251 B
Docker
FROM rabbitmq:3.6
|
|
|
|
RUN rabbitmq-plugins enable rabbitmq_management \
|
|
&& rabbitmq-plugins enable rabbitmq_web_stomp \
|
|
&& rabbitmq-plugins enable rabbitmq_mqtt
|
|
|
|
# Add script to create default users / vhosts
|
|
ADD init.sh /init.sh
|
|
|
|
RUN chmod +x /init.sh
|