Trying to add Z-wave devices

Hi all, i’m running via a docker image.
For integration of z-wave devices in need to install zwave-js manually.

I tried this:
pi@raspberrypi:~ $ docker run --rm -it -p 8091:8091 -p 3000:3000 --device=/dev/serial/by-id/0658:/dev/zwave \ --mount source=zwavejs2mqtt,target=/usr/src/app/store zwavejs/zwavejs2mqtt:latest Unable to find image 'zwavejs/zwavejs2mqtt:latest' locally latest: Pulling from zwavejs/zwavejs2mqtt 420c7481a3a7: Pull complete 42c5f0fd37b3: Pull complete f87d282ad34c: Pull complete 9b943cd5a9bc: Pull complete 3cb2fa4ca131: Pull complete e1fb37e5f4fc: Pull complete 4f4fb700ef54: Pull complete Digest: sha256:63cc8ba5125aa218ec28b73ece3c073d9e26a63e9edd39ee1bad271efbb8170c Status: Downloaded newer image for zwavejs/zwavejs2mqtt:latest docker: Error response from daemon: error gathering device information while adding custom device "/dev/serial/by-id/0658": no such file or directory.

What have I done wrong?
In addition my usb devices:
pi@raspberrypi:~ $ lsusb Bus 001 Device 004: ID 0403:6001 Future Technology Devices International, Ltd FT232 Serial (UART) IC Bus 001 Device 005: ID 0658:0200 Sigma Designs, Inc. Aeotec Z-Stick Gen5 (ZW090) - UZB Bus 001 Device 006: ID 0424:7800 Microchip Technology, Inc. (formerly SMSC) Bus 001 Device 003: ID 0424:2514 Microchip Technology, Inc. (formerly SMSC) USB 2.0 Hub Bus 001 Device 002: ID 0424:2514 Microchip Technology, Inc. (formerly SMSC) USB 2.0 Hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Check the device paths available by using ls -l /dev/serial/by-id

pi@raspberrypi:~ $ ls -l /dev/serial/by-id
total 0
lrwxrwxrwx 1 root root 13 Jul 10 11:09 usb-0658_0200-if00 → …/…/ttyACM0
lrwxrwxrwx 1 root root 13 Jul 10 11:09 usb-FTDI_FT232R_USB_UART_AL3KH2WE-if00-port0 → …/…/ttyUSB0
pi@raspberrypi:~ $

Change that to the correct path:
/dev/serial/by-id/usb-0658_0200-if00

As given by your output.