Skip to content

Commit

Permalink
Merge pull request #244 from pmffromspace/patch-1
Browse files Browse the repository at this point in the history
Add manual standalone docker example instructions to creating-zones.md
  • Loading branch information
EverythingSmartHome authored Nov 26, 2024
2 parents f07bb88 + 2e45014 commit fd1ff91
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions static/Home Assistant/creating-zones.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,28 @@ Select the add-on, then hit install. Once installed, hit start and then "Open We

![Everything Presence Zone Configurator Dashboard](../images/home-assistant-creating-zones-zone-configurator-dashboard.png)

### (Advanced) Alternative install with docker (no Supervisor)

Use docker run or docker compose similar to following examples, dont forget to adjust HA URL and use a generated access token

*docker run basic example:*
```
docker run -d -e HA_URL=http://HA_URL:8123 -e HA_TOKEN=LONG_LIVE_TOKEN -p 8099:8099 --name everything-presence-mmwave-configurator everything-presence-mmwave-configurator:latest
```

*docker compose basic example:*
```
services:
zones:
ports:
- 8099:8099
image: everything-presence-mmwave-configurator:latest
container_name: everything-presence-mmwave-configurator
environment:
- HA_URL=http://10.0.1.11:8123
- HA_TOKEN=123-generate-token-at-url:8123/profile/security-456
```

### Using the Add-on

From the top left, use the dropdown to select a device. This will load up the real-time tracking information from the Everything Presence Lite:
Expand Down

0 comments on commit fd1ff91

Please sign in to comment.