An eclipse-mosquitto docker container
588
Does basic mosquitto but also persists log / data - original application is for Azure IoT Edge.
Alternative base image is official Eclipse Mosquitto MQTT Broker Docker image.
Pretty simple just ...
docker-compose build
docker-compose up -d
Try the MQTT client to connect to the Mosquitto MQTT Broker. Use 127.0.0.1:1883 for a local environment.
Or use official mosquitto_pub and mosquitto_sub utilities for publishing and subscribing.
# Subscribe to topic.
mosquitto_sub -h localhost -t test
# Publish a message.
mosquitto_pub -h localhost -t test -m "hello."
Content type
Image
Digest
Size
2.3 MB
Last updated
over 7 years ago
docker pull cicorias/mosquitto