4 lines
204 B
Batchfile
4 lines
204 B
Batchfile
@echo off
|
|
if %1%==secure (set config=broker-tls-config) else (set config=broker-no-tls-config)
|
|
docker run --rm -d --name mosquitto -p 8883:8883 -v "%cd%\test\%config%:/mosquitto/config" eclipse-mosquitto
|