OpenHAB: Unterschied zwischen den Versionen
K (1 Version) |
Stefan (Diskussion | Beiträge) |
||
Zeile 8: | Zeile 8: | ||
http://www.instructables.com/id/OpenHAB-on-Raspberry-Pi/ | http://www.instructables.com/id/OpenHAB-on-Raspberry-Pi/ | ||
+ | |||
+ | == Docker == | ||
+ | === Installation === | ||
+ | https://www.openhab.org/download/ | ||
+ | |||
+ | groupadd -g 9001 openhab | ||
+ | useradd -g 9001 openhab | ||
+ | usermod -a -G openhab myownuser | ||
+ | |||
+ | docker run --name openhab --net=host -v /etc/localtime:/etc/localtime:ro -v /etc/timezone:/etc/timezone:ro -v openhab_addons:/openhab/addons -v openhab_conf:/openhab/conf -v openhab_userdata:/openhab/userdata -d -- restart=always openhab/openhab:3.4.2 |
Version vom 20. Februar 2023, 17:57 Uhr
OpenHAB
https://de.wikipedia.org/wiki/OpenHAB
https://openhabdoc.readthedocs.org/de/latest/Raspberry/
http://www.instructables.com/id/OpenHAB-on-Raspberry-Pi/
Docker
Installation
https://www.openhab.org/download/
groupadd -g 9001 openhab useradd -g 9001 openhab usermod -a -G openhab myownuser
docker run --name openhab --net=host -v /etc/localtime:/etc/localtime:ro -v /etc/timezone:/etc/timezone:ro -v openhab_addons:/openhab/addons -v openhab_conf:/openhab/conf -v openhab_userdata:/openhab/userdata -d -- restart=always openhab/openhab:3.4.2