docs and handling failures looking for sonos devices

This commit is contained in:
simojenki
2021-01-29 17:22:56 +11:00
parent 5cd98a5ea6
commit faf9c343a2
2 changed files with 42 additions and 7 deletions

View File

@@ -3,3 +3,25 @@
A bridge between sonos and ?
![Build](https://github.com/simojenki/bonob/workflows/Build/badge.svg)
## Running
bonob is ditributed via docker and can be run in a number of ways
### Full sonos device auto-discovery by using docker --network host
```
docker run \
-e PORT=3000 \
-p 3000 \
--network host \
simojenki/bonob
```
### Full sonos device auto-discovery by using a sonos seed device, without requiring docker host networking
```
docker run \
-e PORT=3000 \
-e BONOB_SONOS_SEED_HOST=192.168.1.123 \
-p 3000 \
simojenki/bonob
```