Chirpstack Docker Mqtt

Hi everyone,
I’m trying to get certificate in order to use MQTT integration.
Following the step in the link below for docker I stop on the first command , that is:

MQTT_BROKER_HOSTS=127.0.0.1,localhost,mqtt.example.com
CHIRPSTACK_GATEWAY_BRIDGE_HOSTS=127.0.0.1,localhost,cgwb.example.com
make set-hosts.

I don’t understand the command above, are 3 command in sequence or only one? Chirpstack is running correctly but the command above in the prompt is not working, maybe I need some extra work in the config file, seevices or anything else.

Thank you for your help
Paolo

It is a single command, broken up in different lines. See the README of the repository:

docker-compose run --rm \
    -e MQTT_BROKER_HOSTS="localhost,mqtt.example.com" \
    -e CHIRPSTACK_GATEWAY_BRIDGE_HOSTS="localhost,cgwb.example.com" \
    chirpstack-certificates make set-hosts

Thank you Brocaar, now I figure out how ot works

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.