• Stars
    star
    207
  • Rank 185,466 (Top 4 %)
  • Language
    Shell
  • License
    Eclipse Public Li...
  • Created over 8 years ago
  • Updated 11 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Repository for building Docker containers for openHAB

openHAB Docker Containers

openHAB logo

Build Status EPL-2.0 Bountysource Docker Version Docker Stars Docker Pulls GitHub Issues GitHub Stars GitHub Forks CodeFactor Gitter Chat

Table of Contents

Introduction

Repository for building Docker containers for openHAB (Home Automation Server). Comments, suggestions and contributions are welcome!

Image variants

The openHAB Docker images are available in the openhab/openhab repository on Docker Hub.

  • For specific versions use:

    • openhab/openhab:<version>
    • openhab/openhab:<version>-<distribution>
  • For the latest stable release use:

    • openhab/openhab
    • openhab/openhab:latest
    • openhab/openhab:latest-<distribution>
  • For the latest release that has a milestone or stable maturity use:

    • openhab/openhab:milestone
    • openhab/openhab:milestone-<distribution>
  • For the latest snapshot release use:

    • openhab/openhab:snapshot
    • openhab/openhab:snapshot-<distribution>

Versions:

  • Stable: Thoroughly tested semi-annual official releases of openHAB. Use the stable version for your production environment if you do not need the latest enhancements and prefer a robust system.
  • Milestone: Intermediary releases of the next openHAB version which are released about once a month. They include recently added features and bugfixes and are a good compromise between the current stable version and the bleeding-edge and potentially unstable snapshot version.
  • Snapshot: Usually 1 or 2 days old and include the latest code. Use these for testing out very recent changes using the latest code. Be aware that some snapshots might be unstable so use these in production at your own risk!
    • 4.0.0-snapshot

Distributions:

  • debian for Debian 11 "bullseye" (default when not specified in tag) (Dockerfile)
  • alpine for Alpine 3.18 (Dockerfile)

The Alpine images are substantially smaller than the Debian images but may be less compatible because OpenJDK is used (see Prerequisites for known disadvantages). Older container images may use older versions of the Debian and Alpine base images.

If you are unsure about what your needs are, you probably want to use openhab/openhab:3.4.4.

Platforms:

The following Docker platforms are supported (automatically determined):

  • linux/amd64
  • linux/arm64
  • linux/arm/v7

There is no linux/arm/v7 Alpine image for openHAB 3 (or newer) because the required openjdk package is unavailable for this platform.

Usage

Important: To be able to use UPnP for discovery the container needs to be started with --net=host.

Important: In the container openHAB runs with user "openhab" (id 9001) by default. See user configuration section below!

The following will run openHAB in demo mode on the host machine:

docker run --name openhab --net=host openhab/openhab:3.4.4

NOTE: Although this is the simplest method to getting openHAB up and running, but it is not the preferred method. To properly run the container, please specify a host volume for the directories.

Starting with Docker named volumes (for beginners)

The following configuration uses Docker named data volumes. These volumes will survive, if you delete or upgrade your container. It is a good starting point for beginners. The volumes are created in the Docker volume directory. You can use docker inspect openhab to locate the directories (e.g. /var/lib/docker/volumes) on your host system. For more information visit Manage data in containers.

Running from command line

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 \
  -e "CRYPTO_POLICY=unlimited" \
  -e "EXTRA_JAVA_OPTS=-Duser.timezone=Europe/Berlin" \
  -d \
  --restart=always \
  openhab/openhab:3.4.4

Running from compose-file.yml

Create the following docker-compose.yml for use of local directories and start the container with docker compose up -d

version: '2.2'

services:
  openhab:
    image: "openhab/openhab:3.4.4"
    restart: always
    network_mode: host
    volumes:
      - "/etc/localtime:/etc/localtime:ro"
      - "/etc/timezone:/etc/timezone:ro"
      - "./openhab_addons:/openhab/addons"
      - "./openhab_conf:/openhab/conf"
      - "./openhab_userdata:/openhab/userdata"
    environment:
      CRYPTO_POLICY: "unlimited"
      EXTRA_JAVA_OPTS: "-Duser.timezone=Europe/Berlin"
      OPENHAB_HTTP_PORT: "8080"
      OPENHAB_HTTPS_PORT: "8443"

Create the following docker-compose.yml for use of Docker volumes and start the container with docker compose up -d

version: '2.2'

services:
  openhab:
    image: "openhab/openhab:3.4.4"
    restart: always
    network_mode: host
    volumes:
      - "/etc/localtime:/etc/localtime:ro"
      - "/etc/timezone:/etc/timezone:ro"
      - "openhab_addons:/openhab/addons"
      - "openhab_conf:/openhab/conf"
      - "openhab_userdata:/openhab/userdata"
    environment:
      CRYPTO_POLICY: "unlimited"
      EXTRA_JAVA_OPTS: "-Duser.timezone=Europe/Berlin"
      OPENHAB_HTTP_PORT: "8080"
      OPENHAB_HTTPS_PORT: "8443"

volumes:
  openhab_addons:
    driver: local
  openhab_conf:
    driver: local
  openhab_userdata:
    driver: local

Running openHAB with libpcap support

You can run all openHAB images with libpcap support by configuring additional capabilities. This allows for using the Amazon Dash Button Binding in the Docker container. Create the following docker-compose.yml and start the container with docker compose up -d

version: '2.2'

services:
  openhab:
    container_name: openhab
    image: "openhab/openhab:3.4.4"
    restart: always
    network_mode: host
    cap_add:
      - NET_ADMIN
      - NET_RAW
    volumes:
      - "/etc/localtime:/etc/localtime:ro"
      - "/etc/timezone:/etc/timezone:ro"
      - "./openhab_addons:/openhab/addons"
      - "./openhab_conf:/openhab/conf"
      - "./openhab_userdata:/openhab/userdata"

Running on Windows and macOS

The host networking driver only works on Linux hosts, and is not supported by Docker on Windows and macOS. On Windows and macOS ports should be exposed by adding port options to commands (-p 8080) or by adding a ports section to docker-compose.yml.

version: '2.2'

services:
  openhab:
    image: "openhab/openhab:3.4.4"
    restart: always
    ports:
      - "8080:8080"
      - "8443:8443"
    volumes:
      - "./openhab_addons:/openhab/addons"
      - "./openhab_conf:/openhab/conf"
      - "./openhab_userdata:/openhab/userdata"
    environment:
      CRYPTO_POLICY: "unlimited"
      EXTRA_JAVA_OPTS: "-Duser.timezone=Europe/Berlin"
      OPENHAB_HTTP_PORT: "8080"
      OPENHAB_HTTPS_PORT: "8443"

Starting with Docker mounting a host directory (for advanced user)

You can mount a local host directory to store your configuration files. If you followed the beginners guide, you do not need to read this section. The following run command will create the folders and copy the initial configuration files for you.

docker run \
  --name openhab \
  --net=host \
  -v /etc/localtime:/etc/localtime:ro \
  -v /etc/timezone:/etc/timezone:ro \
  -v /opt/openhab/addons:/openhab/addons \
  -v /opt/openhab/conf:/openhab/conf \
  -v /opt/openhab/userdata:/openhab/userdata \
  -e "CRYPTO_POLICY=unlimited" \
  -e "EXTRA_JAVA_OPTS=-Duser.timezone=Europe/Berlin" \
  openhab/openhab:3.4.4

Automating Docker setup using Ansible (for advanced user)

Here is an example playbook in case you control your environment with Ansible. You can test it by running ansible-playbook -i mycontainerhost, -t openhab run-containers.yml. The :Z at the end of volume lines is for SELinux systems. If run elsewhere, replace it with ro.

- name: ensure containers are running
  hosts: all
  tasks:

  - name: ensure openhab is up
    tags: openhab
    docker_container:
      name: openhab
      image: openhab/openhab:3.4.4
      state: started
      detach: yes
      ports:
        - 8080:8080
        - 8101:8101
        - 5007:5007
      volumes:
        - "/etc/localtime:/etc/localtime:ro"
        - "/etc/timezone:/etc/timezone:ro"
        - "/opt/openhab/addons:/openhab/addons:Z"
        - "/opt/openhab/conf:/openhab/conf:Z"
        - "/opt/openhab/userdata:/openhab/userdata:Z"
      keep_volumes: yes
      hostname: openhab.localnet
      memory: 512m
      pull: true
      restart_policy: unless-stopped
      env:
        CRYPTO_POLICY="unlimited"
        EXTRA_JAVA_OPTS="-Duser.timezone=Europe/Berlin"

Accessing the console

You can connect to a console of an already running openHAB container with the following command:

docker exec -it openhab /openhab/runtime/bin/client

The default password for the login is: habopen

Startup modes

Server mode

The container starts openHAB in server mode when no TTY is provided, example:

docker run --detach --name openhab openhab/openhab:3.4.4

When the container runs in server mode you can also add a console logger so it prints logging to stdout so you can check the logging of a container named "openhab" with:

docker logs openhab

To use a console logger with openHAB 3 (or newer), edit userdata/etc/log4j2.xml and add the following appender to the "Root logger" and "openhab.event" logger configurations: <AppenderRef ref="STDOUT"/>

To use a console logger with openHAB 2, edit userdata/etc/org.ops4j.pax.logging.cfg and then:

  • Update the appenderRefs line to: log4j2.rootLogger.appenderRefs = out, osgi, console
  • Add the following line: log4j2.rootLogger.appenderRef.console.ref = STDOUT

Regular mode

When a TTY is provided openHAB is started with an interactive console, e.g.:

docker run -it openhab/openhab:3.4.4

Debug mode

The debug mode is started with the command:

docker run -it openhab/openhab:3.4.4 ./start_debug.sh

Environment variables

  • CRYPTO_POLICY=limited
  • EXTRA_JAVA_OPTS=""
  • EXTRA_SHELL_OPTS=""
  • LC_ALL=en_US.UTF-8
  • LANG=en_US.UTF-8
  • LANGUAGE=en_US.UTF-8
  • OPENHAB_HTTP_PORT=8080
  • OPENHAB_HTTPS_PORT=8443
  • USER_ID=9001
  • GROUP_ID=9001

User and group identifiers

The group ID will default to the same value as the user ID. By default the openHAB user in the container is running with:

  • uid=9001(openhab) gid=9001(openhab) groups=9001(openhab)

Make sure that either

  • You create the same user with the same uid and gid on your Docker host system
groupadd -g 9001 openhab
useradd -u 9001 -g openhab -r -s /sbin/nologin openhab
usermod -a -G openhab myownuser
  • Or run the Docker container with your own user AND pass the uid and gid to openHAB with environment variables
docker run \
(...)
-e USER_ID=<myownuserid> \
-e GROUP_ID=<myowngroupid> \
(...)

You can obtain your user and group ID by executing the id --user and id --group commands.

Java cryptographic strength policy

Due to local laws and export restrictions the containers use Java with a limited cryptographic strength policy. Some openHAB functionality may depend on unlimited strength which can be enabled by configuring the environment variable CRYPTO_POLICY=unlimited

Before enabling this make sure this is allowed by local laws and you agree with the applicable license and terms (see OpenJDK (Cryptographic Cautions)).

The following functionality depends on the unlimited cryptographic strength policy:

  • KM200 Binding
  • Linky Binding
  • Loxone Binding
  • MQTT Binding
  • openHAB Marketplace

Parameters

  • -it - starts openHAB with an interactive console (since openHAB 2.0.0)
  • -p 8080 - the HTTP port of the web interface
  • -p 8443 - the HTTPS port of the web interface
  • -p 8101 - the SSH port of the Console (since openHAB 2.0.0)
  • -p 5007 - the LSP port for validating rules (since openHAB 2.2.0)
  • -v /openhab/addons - custom openHAB addons
  • -v /openhab/conf - openHAB configs
  • -v /openhab/userdata - openHAB userdata directory
  • --device=/dev/ttyUSB0 - attach your devices like RFXCOM or Z-Wave Sticks to the container

Passing devices with symlinks

On Linux, if you pass a device with a symlink or any non standard name (e.g. /dev/ttyZWave), some addons require the device name to follow the Linux serial port naming rules (e.g. "ttyACM0", "ttyUSB0" or "ttyUSB-9999") or will otherwise fail to discover the device.

This can be achieved by mapping the devices to a compliant name like this:

docker run \
(...)
--device=/dev/ttyZWave:/dev/ttyACM0
--device=/dev/ttyZigbee:/dev/ttyACM1
(...)

More information about serial ports and symlinks can be found here.

Executing shell scripts before openHAB is started

It is sometimes useful to run shell scripts after the "userdata" directory is created, but before Karaf itself is launched. One such case is creating SSH host keys, and allowing access to the system from the outside via SSH. Exemplary scripts can be found in the contrib/cont-init.d directory

To use this, create a directory called

/etc/cont-init.d

and add a volume mount to your startup:

  ...
  -v /etc/cont-init.d:/etc/cont-init.d \
  ...

and put your scripts into that directory. This can be done by either using a volume mount (see the examples above) or creating your own images which inherit from the official ones.

Upgrading

Upgrading openHAB requires changes to the user mapped in userdata folder. The container will perform these steps automatically when it detects that the userdata/etc/version.properties is different from the version in dist/userdata/etc/version.properties in the Docker image.

The steps performed are:

  • Create a userdata/backup folder if one does not exist.
  • Create a full backup of userdata as a dated tar file saved to userdata/backup. The userdata/backup folder is excluded from this backup.
  • Show update notes and warnings.
  • Execute update pre/post commands.
  • Copy userdata system files from dist/userdata/etc to userdata/etc.
  • Update KAR files in addons.
  • Delete the contents of userdata/cache and userdata/tmp.

The steps performed are the same as those performed by running the upgrade script that comes with OH, except the backup is performed differently and the latest openHAB runtime is not downloaded. All messages shown during the update are also logged to userdata/logs/update.log.

Common problems

Error: KARAF_ETC is not valid

This error message indicates that the data in the volumes is not properly initialized. The error is usually the result of a permissions issue or already putting files into volumes without the volumes having been initialized by the container first. When mounting directories into the container, check that these directories exist, are completely empty and are owned by the same USER_ID and GROUP_ID as configured in the container ENV variables.

Missing some preinstalled package

Docker containers are kept as small as possible intentionally to decrease download times and the number of potential vulnerabilities for everyone. If you want additional packages installed, create your own container based on this container. Another option is to install the package by executing a shell script before openHAB is started.

No logging after "Launching the openHAB runtime..."

By default this will always be the last logged message. A console logger can be configured for more detailed logging.

OpenJDK Client VM warning: No monotonic clock was available

This error message may occur when running a recent openHAB container image on a Docker host with an outdated version of libseccomp2. The issue can be fixed by upgrading libseccomp2 on your Docker host to a more recent version. For more details see this community thread.

OpenMediaVault

The default filesystem mount flags of OpenMediaVault contain the noexec flag which interferes with the serial library used by openHAB. To be able to use serial devices with openHAB, make sure the userdata volume mounted by the container is not backed by a filesystem having the noexec flag. See the OMV documentation on how to remove the noexec flag from an existing filesystem.

Portainer

The default values of ENV variables are always stored by Portainer (see portainer/portainer#2952). This causes issues such as endless restart loops when upgrading the container with Portainer. To resolve this issue when upgrading openHAB, first remove all default (non-overridden) ENV variables before starting the new container.

SELinux

When using the container on a Linux distribution with SELinux enabled (CentOS/Fedora/RHEL), add the :z or :Z option to volumes to give the container write permissions. For more information on this see the Docker documentation.

Building the images

Checkout the GitHub repository, change to a directory containing a Dockerfile (e.g. /debian) and then run these commands to build and run a Docker image for your current platform:

$ docker build --build-arg JAVA_VERSION=11 --build-arg OPENHAB_VERSION=3.4.4 --tag openhab/openhab .
$ docker run openhab/openhab

To be able to build the same image for other platforms (e.g. arm/v7, arm64 on amd64) Docker CE 19.03 with BuildKit support can be used.

First enable BuildKit support, configure QEMU binary formats and a builder using:

$ echo '{"experimental":true}' | sudo tee /etc/docker/daemon.json
$ export DOCKER_CLI_EXPERIMENTAL=enabled
$ docker run --privileged --rm tonistiigi/binfmt:qemu-v6.1.0 --install all
$ sudo systemctl restart docker
$ docker buildx create --name builder --use

Change to a directory containing a Dockerfile (e.g. /debian) and then use the following command to build an ARMv7 image:

$ docker buildx build --build-arg JAVA_VERSION=11 --build-arg OPENHAB_VERSION=3.4.4 --platform linux/arm/v7 --tag openhab/openhab --load .

The build script in the root of the repository helps to simplify building the openHAB images with BuildKit. It can be used to build the images of multiple openHAB versions and correctly tag and push them to a Docker registry. Execute ./build -h for usage instructions and examples.

Contributing

Contribution guidelines

More Repositories

1

openhab1-addons

Add-ons for openHAB 1.x
Java
3,431
star
2

openhab-addons

Add-ons for openHAB
Java
1,833
star
3

openhab-distro

The binary distribution of openHAB
PowerShell
1,281
star
4

openhab-core

Core framework of openHAB
Java
874
star
5

openhabian

openHABian - empowering the smart home, for Raspberry Pi and Debian systems
Shell
806
star
6

openhab-android

openHAB client for Android
Kotlin
577
star
7

openhab-cloud

Cloud companion for openHAB instances
JavaScript
309
star
8

openhab-docs

This repository contains the documentation for openHAB.
Ruby
263
star
9

org.openhab.ui.habmin

HABmin - a graphical user interface for openHAB 2
JavaScript
231
star
10

openhab-webui

Web UIs of openHAB
Vue
209
star
11

openhab-ios

The repository of the iOS client
Swift
182
star
12

openhab-google-assistant

openHAB Google Assistant: Actions on Google for openHAB
JavaScript
175
star
13

org.openhab.binding.zwave

openHAB binding for Z-Wave
Java
170
star
14

openhab-syno-spk

openHAB Synology SPK Install Package
Shell
162
star
15

openhab-vscode

VS Code extension for openHAB configuration files
TypeScript
159
star
16

openhab-alexa

openHAB skill for Amazon Alexa
JavaScript
151
star
17

org.openhab.ui.habpanel

OUTDATED repo - HABPanel has moved to the openhab-webui repo!
HTML
97
star
18

openhab-windows

Universal Windows App for openHAB
C#
88
star
19

openhab-qnap-qpkg

openHAB Packages for QNAP NAS systems
Shell
78
star
20

org.openhab.binding.zigbee

openHAB binding for ZigBee
Java
73
star
21

org.openhab.ui.habot

A chatbot for openHAB using machine-learning natural language processing from OpenNLP
Java
67
star
22

openhab-js

openHAB JavaScript Library for JavaScript Scripting Automation
JavaScript
38
star
23

static-code-analysis

Maven tooling for static code analysis
Java
29
star
24

openhab-mycroft

Mycroft skill for openHAB
Python
21
star
25

website

This repository contains the final artifacts from which the project website is served.
Vue
20
star
26

openhab-snap

Packaging of openHAB for Ubuntu Core
Shell
18
star
27

openhab-linuxpkg

Repo for Linux packages
Shell
17
star
28

jamod

A fork of Java Modbus Library (jamod) - http://jamod.sourceforge.net/
Java
16
star
29

openhab-pebble

Pebble client for openHAB
JavaScript
11
star
30

openhab2-addons

This is an archive of the full history of the openhab2-addons repo.
Java
10
star
31

org.openhab.binding.bacnet

openHAB 1.x binding for BACnet
Java
8
star
32

openhab-bundles

5
star
33

openhab-jruby

A Helper Library for Writing openHAB Automations in Ruby
Ruby
4
star
34

openhab-deps-repo

openHAB p2 repository
Shell
4
star
35

openhab.ios.old

This repo contains the code of the now outdated first iOS openHAB client
4
star
36

openhab-osgiify

OSGi-ified versions of openHAB dependencies
3
star
37

infrastructure

This repository contains scripts and artifacts that address the overall build infrastructure of openHAB
Groovy
2
star
38

quercus-osgi

1
star