diff --git a/mosquitto/README.md b/mosquitto/README.md index 8f53207..a006628 100644 --- a/mosquitto/README.md +++ b/mosquitto/README.md @@ -14,4 +14,14 @@ monitoring and automation with his twittering house and twittering ferry. Andy gave a talk on this at OggCamp that explains a bit about MQTT and how he uses it. The slides and audio are available online at slideshare. +## docker-compose.yml + +``` +mosquitto: + image: vimagick/mosquitto + ports: + - "1883:1883" + restart: always +``` + [1]: http://mosquitto.org/ diff --git a/mosquitto/docker-compose.yml b/mosquitto/docker-compose.yml new file mode 100644 index 0000000..ba00d43 --- /dev/null +++ b/mosquitto/docker-compose.yml @@ -0,0 +1,5 @@ +mosquitto: + image: vimagick/mosquitto + ports: + - "1883:1883" + restart: always