Page 1 of 1

Docker container for Z-Way

Posted: 24 Jul 2024 20:03
by marco
Hi dear
I tried to follow the instructions here

https://github.com/Z-Wave-Me/docker-z-w ... /README.md

on a raspberrypi 4 (arch64), but something seems going wrong.

First, line 21 of the Dockerfile seems missing mkdir command.

Moreover in the Dockerfile even switching form

Code: Select all

wget -q -O - https://storage.z-wave.me/Z-Way-Install | bash
to

Code: Select all

wget -qO - https://storage.z-wave.me/RaspbianInstall | sudo bash
the created image has empty or incomplete folders (eg /opt/z-way-server incomplete, /etc/init.d/z-way-server missing ....).


It seems that something go wrong with the run.sh file when It try to operate on arch64 hardware.

Do you have any suggestions?

Re: Docker container for Z-Way

Posted: 07 Aug 2024 15:20
by PoltoS
We will check it. Looks the problem is specific to aarch64

Re: Docker container for Z-Way

Posted: 19 Aug 2024 16:09
by marco
Hi Poltos, thanks for reply.
is there a plan to fix this?

Re: Docker container for Z-Way

Posted: 23 Aug 2024 12:39
by PoltoS
We are looking into it.

Re: Docker container for Z-Way

Posted: 23 Sep 2024 09:44
by klirichek
I've successfully installed on raspberry pi 4 (aarch64) without docker, on ubuntu 22.04

You need:

Code: Select all

dpkg --add-architecture armhf
apt install libc6:armhf libstdc++6:armhf
dpkg -i libssl1.1_1.1.1n-0+deb11u5+rpt1_armhf.deb
apt install libc-ares2:armhf libavahi-compat-libdnssd1:armhf libmosquitto1:armhf libwebsockets16:armhf libcurl3-gnutls:armhf libarchive13:armhf libglib2.0-0:armhf
package libssl1.1_1.1.1n-0+deb11u5+rpt1_armhf.deb is absent in repo of ubuntu; I've made 'apt download libssl1.1' on raspbian image, then transferred the package to ubuntu installation.

with these packages you may install z-way-server from deb package via dpkg -i.