mosquitto/docker
matt ee634e4f84 replace broken ssl-libs
Signed-off-by: matt <swineherd92@gmail.com>
2020-06-09 15:24:40 +01:00
..
1.4.12 Docker: Add ca-certificates to images. 2019-11-06 14:15:26 +00:00
1.5 Distribute clients with 1.5 docker image. 2020-01-30 12:36:39 +00:00
1.6 Update Docker to 1.6.8. 2019-12-03 14:34:11 +00:00
generic replace broken ssl-libs 2020-06-09 15:24:40 +01:00
local Docker: Add ca-certificates to images. 2019-11-06 14:15:26 +00:00
README.md Make target for building a docker image based on working dir files. 2019-05-02 09:44:02 +01:00

Docker Images

This directory contains Docker files for Mosquitto.

The 1.5 directory contains the latest version of Mosquitto for that series, and provide the basis of the official image.

1.4.12 is the version using Alpine packaged Mosquitto, which will be removed at the next minor release.

The generic directory contains a generic Dockerfile that can be used to build arbitrary versions of Mosquitto based on the released tarballs as follows:

cd generic
docker build -t eclipse-mosquitto:1.5.1 --build-arg VERSION="1.5.1" .
docker run --rm -it eclipse-mosquitto:1.5.1

The local directory can be used to build an image based on the files in the working directory by using make localdocker from the root of the repository.