Command line switch issue (USB HID Relay board) (Running from Docker)

I’m using 8 channel hid relay board
Running from teminal hidusb-relay-cmd on 1' works fine from all users (added rule to udev/rules.d)
But it doesn’t works from Home assistant and no any error

- platform: command_line
  switches:
    8ch_relay01:
      command_on: '/usr/bin/hidusb-relay-cmd on 1'
      command_off: '/usr/bin/hidusb-relay-cmd off 1'

Is there any way to get output from running this command?
Home assistant supervised installed through Docker.
(Debian 10 Buster on OrangePi PC2)

this post

and

automation:
- id: '1608270420221'
  alias: usb response to inputtext
  description: takes usb response and applies text to input_text_usbresponse
  trigger:
  - platform: state
    entity_id: sensor.usb_sensor3
  condition: []
  action:
  - service: input_text.set_value
    data_template:
      entity_id: input_text.usbreponse
      value: >         
            {{states('sensor.usb_sensor3') | string }}

should do the trick.

Currently i’m running command on host using ssh, works fine, but with some delay