-
I am checking this: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello! To enable MQTT from docker-compose, you'll need to tweak the So basically, you'll have to uncomment or add the following block with correct values: %docker-compose.mqtt.server=my-mqtt-server:1883
%docker-compose.mqtt.username=microcks
%docker-compose.mqtt.password=microcks You'll also need to add MQTT to the list of supported protocols using this property line: # Explicitly telling the minion the protocols we want to support
%docker-compose.minion.supported-bindings=KAFKA,WS,MQTT Finally, if you want the UI to display the correct MQTT server address, you'll also need to edit the features.feature.async-api.endpoint-MQTT=my-mqtt-server:1883 Hope it helps! |
Beta Was this translation helpful? Give feedback.
Hello!
To enable MQTT from docker-compose, you'll need to tweak the
config/application.properties
file under the docker-compose file. This file contains properties coming from https://github.com/microcks/microcks/blob/master/minions/async/src/main/resources/application.properties that may be prefixed with%docker-compose
that is the name of the profile used for launching from docker-compose.So basically, you'll have to uncomment or add the following block with correct values:
You'll also need to add MQTT to the list of supported protocols using this property line:
#…