simojenki / bonob

sonos SMAPI implementation allowing integrating different music sources with sonos.
GNU General Public License v3.0
221 stars 15 forks source link

Docker-compose error even with demo? #123

Open DarrenPIngram opened 1 year ago

DarrenPIngram commented 1 year ago

ERROR: The Compose file './docker-compose.yml' is invalid because: services.bonob.environment.BNB_SONOS_AUTO_REGISTER contains true, which is an invalid type, it should be a string, number, or a null

  BNB_SONOS_AUTO_REGISTER: true
  BNB_SONOS_DEVICE_DISCOVERY: true

Now true to my eyes looks like a string... and it is as provided too...

simojenki commented 1 year ago

It would seem that docker-compose does not like the booleans, quoting them seems to fix the problem, ie: "true"

DarrenPIngram commented 1 year ago

Thanks, will give that a try shortly. I am still learning some of the ropes and assumed the basics were not to be touched!