Openhab2 with my custom configuration
1.3K
The Docker Images contain only openhab's online version
Latest tag contains the amd64-online version of openhab
On Raspberry pi
docker run \
--name openhab \
--net=host \
-p 8080:8080 \
-p 8443:8443 \
-p 5555:5555 \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v /opt/openhab/conf:/openhab/conf \
-v /opt/openhab/userdata:/openhab/userdata \
-d \
--restart=always \
sklemmer/openhab:arm
On ARMHF systems
docker run \
--name openhab \
--net=host \
-p 8080:8080 \
-p 8443:8443 \
-p 5555:5555 \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v /opt/openhab/conf:/openhab/conf \
-v /opt/openhab/userdata:/openhab/userdata \
-d \
--restart=always \
sklemmer/openhab:armhf
On other Linux Systems
docker run \
--name openhab \
--net=host \
-p 8080:8080 \
-p 8443:8443 \
-p 5555:5555 \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v /opt/openhab/conf:/openhab/conf \
-v /opt/openhab/userdata:/openhab/userdata \
-d \
--restart=always \
sklemmer/openhab:amd
Content type
Image
Digest
Size
345.9 MB
Last updated
almost 10 years ago
docker pull sklemmer/openhab