Sign inSign up

kyberpunk/mosquitto

By kyberpunk

Updated over 4 years ago

Image with custom build of Mosquitto MQTT broker with ARM support for examples demonstration.

Image
0

2.1K

kyberpunk/mosquitto repository overview

Eclipse Mosquitto MQTT Broker

This image contains custom build of Eclipse Mosquitto MQTT broker. Image is build also for ARM architecture. It is intended for simple MQTT protocol samples demonstration. If you want to use all features of Eclipse Mosquitto project, you should use official image.

Mosquitto is an open source implementation of a server for version 5.0, 3.1.1, and 3.1 of the MQTT protocol.

Using the image

Using default configuration

Mosquitto can be simply run with default configuration. By default the broker listen to port 1883 and no security level is enabled.

docker run -d -p 1883:1883 kyberpunk/mosquitto
Using custom configuration

For changing Mosquitto default settings and using enhanced features it is possible to use custom configuration. Detailed description of configuration parameters you can find here.

docker run -d -p 1883:1883 -v $PWD/mosquitto.conf:/mosquitto/config/mosquitto.conf kyberpunk/mosquitto

Modify $PWD to the directory where you stored the configuration file.

Considerations

WARNING: For version >= 2.0.0 there is allow_anonymous option enabled in default configuration. You can override it by providing custom configuration.

Tag summary

Content type

Image

Digest

Size

107.9 MB

Last updated

over 4 years ago

docker pull kyberpunk/mosquitto