From bdd25ce3f9845bb18da00219803c5687673dc13c Mon Sep 17 00:00:00 2001 From: kev Date: Wed, 9 Dec 2015 01:02:10 +0800 Subject: [PATCH] update --- mosquitto/README.md | 10 ++++++++++ mosquitto/docker-compose.yml | 5 +++++ 2 files changed, 15 insertions(+) create mode 100644 mosquitto/docker-compose.yml 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