Sign inSign up

sklemmer/openhab

By sklemmer

Updated almost 10 years ago

Openhab2 with my custom configuration

Image
0

1.3K

sklemmer/openhab repository overview

How to use Docker image

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

Tag summary

Content type

Image

Digest

Size

345.9 MB

Last updated

almost 10 years ago

docker pull sklemmer/openhab