Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker-compose.yaml #228

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ services:
container_name: ha_streamdeck
image: basnijholt/home-assistant-streamdeck-yaml:latest
environment:
- HASS_HOST=x.y.z.t:8123
- HASS_TOKEN=foo
- HASS_HOST=x.y.z.t:8123 # the local IP address of your Home Assistant instance
- HASS_TOKEN=foo # generate a "Long Term Access Token" from Home Assistant > User > Security > Long Term Access Token
- WEBSOCKET_PROTOCOL=wss # or "ws" if you don't have SSL, by default it's wss
volumes:
- ./configuration.yaml:/app/configuration.yaml
- ./99-streamdeck.rules:/etc/udev/rules.d/99-streamdeck.rules # the file has to contain this: SUBSYSTEMS=="usb", ATTRS{idVendor}=="0fd9", GROUP="users", TAG+="uaccess"
- /etc/localtime:/etc/localtime:ro
privileged: true
restart: always
Expand Down