mosquitto/docker
Roger A. Light 5c45bc4e84 Improve Docker no-auth mode.
Remove use of environment variable, instruct users to run a specific
command instead.
2021-03-03 17:14:16 +00:00
..
1.5 Docker: Verify sha256 sums for lws/cjson. 2020-12-03 21:07:01 +00:00
1.5-openssl Update docker images. 2020-08-19 16:14:25 +01:00
1.6 Update docker builds. 2021-02-04 10:59:40 +00:00
1.6-openssl Update docker builds. 2021-02-04 10:59:40 +00:00
2.0 Improve Docker no-auth mode. 2021-03-03 17:14:16 +00:00
2.0-openssl Improve Docker no-auth mode. 2021-03-03 17:14:16 +00:00
generic Fix generic docker build. 2020-12-13 21:11:42 +00:00
local New dynamic security plugin. 2020-10-27 00:54:55 +00:00
README.md Docker files for 2.0 2020-12-02 22:43:42 +00:00

Docker Images

This directory contains Docker files for Mosquitto.

The 2.0 directory contains the latest version of Mosquitto for that series, it uses libressl. The 2.0-openssl directory is identical except that it uses openssl instead of libressl, and enables TLS-PSK and TLS v1.3 cipher support.

The 1.6 directory contains the version of Mosquitto based on the 1.6 branch. 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.