OpenHAB: Unterschied zwischen den Versionen

Aus
Wechseln zu: Navigation, Suche
 
(Installation)
 
(4 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 8: Zeile 8:
  
 
http://www.instructables.com/id/OpenHAB-on-Raspberry-Pi/
 
http://www.instructables.com/id/OpenHAB-on-Raspberry-Pi/
 +
 +
 +
== Installation ==
 +
https://www.openhab.org/download/
 +
 +
=== Docker ===
 +
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
 +
 +
docker run        --name myopenhab        --net FujitsuFesteIP --ip 192.168.0.50        -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:latest
 +
 +
user : stefan

Aktuelle Version vom 25. Mai 2023, 21:14 Uhr

OpenHAB

https://de.wikipedia.org/wiki/OpenHAB

http://www.openhab.org/

https://openhabdoc.readthedocs.org/de/latest/Raspberry/

http://www.instructables.com/id/OpenHAB-on-Raspberry-Pi/


Installation

https://www.openhab.org/download/

Docker

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
docker run         --name myopenhab         --net FujitsuFesteIP --ip 192.168.0.50         -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:latest
user : stefan