This is my very first time working with docker and not sure I fully understand the underlying protocol at work. So this is what I’ve done thus far:
- installed the docker image. I literally did just this so my configuration.yaml is actually located at /path/to/your/config/
docker run -d --name=“home-assistant” -v /path/to/your/config:/config -v /etc/localtime:/etc/localtime:ro --net=host homeassistant/home-assistant
- installed the docker image for the Open Zwave Control Panel. I have no idea how to interface with it. Is this via localhost:SomePort???
docker run -p 8008:8008 –device /dev/ttyACM0 openzwave/openzwave-control-panel &>/dev/null &
-
Used Z-Stick to include ~8 lights and a lock.
-
Updated configuration.yaml w/
zwave:
usb_path: /dev/ttyACM0
config_path: /usr/local/lib$ cd python3.4/dist-packages/libopenzwave-0.3.1-py3.4-linux-x86_64.egg/config/
Issues/Questions-
- When I hit localhost:8123 HA is not running…or is unreachable. Is there another location I need to go to get to the docker served instance of HA?
- How do I get to the Open ZWave Dashboard that I think is where I will need to get to to see included devices and names, etc.?
- How do I get my HA Docker Image to move (or delete and start a fresh run) config files to a more appropriate place since I missed the step on replacing the /path/to/your/config/ ?
Thanks for your help. I am utterly lost.