mosquitto/docker
2020-08-13 20:51:26 +01:00
..
1.5 Don't quit on chmod error, it can be ignored. 2020-08-13 20:51:26 +01:00
1.5-openssl Don't quit on chmod error, it can be ignored. 2020-08-13 20:51:26 +01:00
1.6 Don't quit on chmod error, it can be ignored. 2020-08-13 20:51:26 +01:00
1.6-openssl Don't quit on chmod error, it can be ignored. 2020-08-13 20:51:26 +01:00
generic Don't quit on chmod error, it can be ignored. 2020-08-13 20:51:26 +01:00
local Don't quit on chmod error, it can be ignored. 2020-08-13 20:51:26 +01:00
README.md Update docker. 2020-08-12 16:03:08 +01:00

Docker Images

This directory contains Docker files for Mosquitto.

The 1.6 directory contains the latest version of Mosquitto for that series, and provide the basis of the official image. It uses libressl. The 1.6-openssl directory is identical except that it uses openssl instead of libressl, and enables TLS-PSK support.

The 1.5 directory contains the version of Mosquitto based on the 1.5 branch. It uses libressl. The 1.5-openssl directory is identical except that it uses openssl instead of libressl, and enables TLS-PSK support.

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.