Update to support ChirpStack Gateway Bridge v3.5 config (#26)
v3.5 replaces the dot (.) separated env. variables by double underscores (__). Dots do work within Docker, but are not valid for env. variable names. It also implements supports for defining a list of MQTT servers instead of a single server.
This commit is contained in:
parent
b753aaf6f7
commit
596df38fc6
@ -2,6 +2,6 @@
|
|||||||
# configuration example and documentation.
|
# configuration example and documentation.
|
||||||
|
|
||||||
[integration.mqtt.auth.generic]
|
[integration.mqtt.auth.generic]
|
||||||
server="tcp://mosquitto:1883"
|
servers=["tcp://mosquitto:1883"]
|
||||||
username=""
|
username=""
|
||||||
password=""
|
password=""
|
||||||
|
@ -27,7 +27,7 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 1700:1700/udp
|
- 1700:1700/udp
|
||||||
environment:
|
environment:
|
||||||
- INTEGRATION.MQTT.AUTH.GENERIC.SERVER=tcp://mosquitto:1883
|
- INTEGRATION__MQTT__AUTH__GENERIC__SERVERS=tcp://mosquitto:1883
|
||||||
|
|
||||||
chirpstack-geolocation-server:
|
chirpstack-geolocation-server:
|
||||||
image: chirpstack/chirpstack-geolocation-server:3
|
image: chirpstack/chirpstack-geolocation-server:3
|
||||||
|
Loading…
Reference in New Issue
Block a user