Zwavejs/zwave-js-ui docker container not starting up since latest release

I’ve been using two RPi devices with z-wave sticks running docker image zwavejs/zwave-js-ui. Since the last update, which is required by the latest HomeAssistant, the container does not start. If I manually run the image I get a “code unreachable” message. This happens on both my systems.

I’ve tried a complete new reinstall of the image and still get the same result.

Anyone with any tips on what I may be doing wrong?

Details of my system:

pi@raspberrypi:~$ cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 10 (buster)"
NAME="Raspbian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
pi@raspberrypi:~$ docker version
Client: Docker Engine - Community
 Version:           19.03.5
 API version:       1.40
 Go version:        go1.12.12
 Git commit:        633a0ea
 Built:             Wed Nov 13 07:37:22 2019
 OS/Arch:           linux/arm
 Experimental:      false

Server: Docker Engine - Community
 Engine:
  Version:          19.03.5
  API version:      1.40 (minimum version 1.12)
  Go version:       go1.12.12
  Git commit:       633a0ea
  Built:            Wed Nov 13 07:31:17 2019
  OS/Arch:          linux/arm
  Experimental:     false
 containerd:
  Version:          1.2.10
  GitCommit:        b34a5c8af56e510852c35414db4c1f4fa6172339
 runc:
  Version:          1.0.0-rc8+dev
  GitCommit:        3e425f80a8c931f88e6d94a8c831b9d5aa481657
 docker-init:
  Version:          0.18.0
  GitCommit:        fec3683

Please review this issue on GitHub:

TLDR;

Update your RPI dist from buster to Bullseye or install libseccomp2:

sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 04EE7237B7D453EC 648ACFD622F3D138
echo "deb http://httpredir.debian.org/debian buster-backports main contrib non-free" | sudo tee -a "/etc/apt/sources.list.d/debian-backports.list"
sudo apt update
sudo apt install libseccomp2 -t buster-backports
1 Like

Thanks! This definitely appears to be the same problem I have.

Same problem here. 8.2.0 and 8.2.1 gave rolling “code unreachable” errors and never started up. I had to revert to 8.1.0 to get it working again. (Fortunately docker makes it easy to revert!)

Installing libseccomp2 from bullseye-backports didn’t fix it for me. However, I found an alternate solution at:
https://wiki.alpinelinux.org/w/index.php?title=Release_Notes_for_Alpine_3.13.0&oldid=19609#time64_requirements

TLDR:

     security_opt:
       - seccomp=default.json

I updated to Bullseye and also installed libseccomp2, but only your solution worked in my case. Thanks.