You want to run RabbitMQ in a Docker environment? You want MQTT and a nice web interface for administration?
Just use the Dockerfile and the hints in this post to get your server up and running in no time!
1 2 3 4 5 6 7 8 9 10 11 |
# use rabbitmq official FROM rabbitmq # enable management plugin RUN rabbitmq-plugins enable --offline rabbitmq_management # enable mqtt plugin RUN rabbitmq-plugins enable --offline rabbitmq_mqtt # expose management port EXPOSE 15672 |
Beware: There are two very important points to keep in mind! If you miss even one of these steps, you will loose your configuration and users on every restart!