Update README.md

docker-compose config
   ERROR: The Compose file './docker-compose.yml' is invalid because:
   services.otrecorder.environment contains {"OTR_HOST": "mosquitto"}, which is an invalid type, it should be a string
grep OTR docker-compose.yml
      - OTR_HOST: mosquitto
      - OTR_USER: "user"
      - OTR_PASS: "paass"
This commit is contained in:
przemas75
2019-01-20 12:24:12 +01:00
committed by GitHub
parent 122d57aa10
commit 4e3b711e03
+3 -3
View File
@@ -150,9 +150,9 @@ services:
- store:/store
restart: unless-stopped
environment:
- OTR_HOST: "mqtt_broker"
- OTR_USER: "user"
- OTR_PASS: "pass"
- OTR_HOST = "mqtt_broker"
- OTR_USER = "user"
- OTR_PASS = "pass"
volumes:
store: