Proxmox USB passthrough problem with ZBDongle-E

I have a Home Assistant VM running in Proxmox and I have created MQTT and Z2M containers with tteck helper scripts. I cannot get the USB passthrough working. The serial ID does not appear in Z2M container or PVE but it does work in HA VM. Funny thing is that I had this working for couple of months and accidently removed the USB passthrough in Promox and now I’m been trying to fix it for multiple evenings without success. Any suggestions how could I fix the issue?

root@pve:~# ls -l /dev/serial/by-id/
ls: cannot access '/dev/serial/by-id/': No such file or directory
root@zigbee2mqtt:~# ls -l /dev/serial/by-id/
total 0
[core-ssh ~]$ ls -l /dev/serial/by-id/
total 0
lrwxrwxrwx    1 root     root            13 Feb 22 21:48 usb-ITEAD_SONOFF_Zigbee_3.0_USB_Dongle_Plus_V2_20231007191409-if00 -> ../../ttyACM0

I’ve tried to create USB passthrough with device id and USB port but both of them seems not to work. Here’s my configuration.yaml on z2m container:

frontend:
  port: 8080
homeassistant: true
permit_join: false
mqtt:
  base_topic: zigbee2mqtt
  server: mqtt://192.168.0.145:1883
  user: HIDDEN
  password: HIDDEN
  keepalive: 60
  reject_unauthorized: true
  version: 4
serial:
 # port: /dev/serial/by-id/usb-ITEAD_SONOFF_Zigbee_3.0_USB_Dongle_Plus_V2_20231007191409-if00
  port: /dev/ttyACM0
  adapter: ezsp
advanced:
  pan_id: 44833
  network_key:
    - 153
    - 103
    - 190
    - 229
    - 185
    - 93
    - 62
    - 250
    - 38
    - 3
    - 41
    - 45
    - 50
    - 51
    - 155
    - 169
  channel: 20
  homeassistant_legacy_entity_attributes: false
  legacy_api: false
  legacy_availability_payload: false
  log_level: info
device_options:
  legacy: false

And here’s the error I get when I try to start the z2m:

root@zigbee2mqtt:~# cd /opt/zigbee2mqtt && npm start

> [email protected] start
> node index.js

Zigbee2MQTT:info  2024-02-22 22:40:11: Logging to console and directory: '/opt/zigbee2mqtt/data/log/2024-02-22.22-40-11' filename: log.txt
Zigbee2MQTT:info  2024-02-22 22:40:11: Starting Zigbee2MQTT version 1.35.3-dev (commit #b32bd309)
Zigbee2MQTT:info  2024-02-22 22:40:11: Starting zigbee-herdsman (0.34.2)
Zigbee2MQTT:error 2024-02-22 22:40:42: Error while starting zigbee-herdsman
Zigbee2MQTT:error 2024-02-22 22:40:42: Failed to start zigbee
Zigbee2MQTT:error 2024-02-22 22:40:42: Check https://www.zigbee2mqtt.io/guide/installation/20_zigbee2mqtt-fails-to-start.html for possible solutions
Zigbee2MQTT:error 2024-02-22 22:40:42: Exiting...
Zigbee2MQTT:error 2024-02-22 22:40:42: Error: Failure to connect
    at Ezsp.connect (/opt/zigbee2mqtt/node_modules/zigbee-herdsman/src/adapter/ezsp/driver/ezsp.ts:372:19)
    at Driver.startup (/opt/zigbee2mqtt/node_modules/zigbee-herdsman/src/adapter/ezsp/driver/driver.ts:163:13)
    at Controller.start (/opt/zigbee2mqtt/node_modules/zigbee-herdsman/src/controller/controller.ts:132:29)
    at Zigbee.start (/opt/zigbee2mqtt/lib/zigbee.ts:62:27)
    at Controller.start (/opt/zigbee2mqtt/lib/controller.ts:109:27)
    at start (/opt/zigbee2mqtt/index.js:107:5)