Problem with OTBR replying only on 127.0.0.1

Hi all. I’m having problem on my setup, core on docker on linux debian, and OTBR. Actually my OTBR boarder router seems to be up and running, but it reply only on 127.0.0.1 from host. Any other host on network does not see it, hence when I try to add a new Matter component, it say it needs a boarder router to be added… My docker compose is as following… Any idea on what to do?

otbr:
        container_name: "otbr"
        image: openthread/otbr
        network_mode: "host"
        cap_add:
          - NET_ADMIN
          - SYS_NICE
        environment:
          OT_RCP_DEVICE: "spinel+hdlc+uart:///dev/ttyUSB0?uart-baudrate=460800"
          AUTOFLASH_FIRMWARE: 0
          
          OT_INFRA_IF: enp1s0 
          
          OT_BACKBONE_IF: enp1s0
          
          BACKBONE_INTERFACE: enp1s0
          
          OT_THREAD_IF: wpan0
          OT_LOG_LEVEL: 7
          #OT_REST_LISTEN_ADDR: "0.0.0.0"
          #OT_REST_LISTEN_PORT: 8081
          #OTBR_AGENT_ARGS: "--rest-address 0.0.0.0 --rest-port 8081"

          
          WLAN_IFNAMES: enp1s0 
          
        command: ["otbr-agent", "-I", "wpan0", "-B", "enp1s0", "--rest-address", "0.0.0.0", "--rest-port", "8081", "-d", "7", "spinel+hdlc+uart:///dev/ttyUSB0?uart-baudrate=460800"]
        stdin_open: true
        tty: true
        devices:
          - /dev/ttyACM0:/dev/ttyUSB0
          - /dev/net/tun:/dev/net/tun
        volumes:
          - /home/deb/otbr:/var/lib/thread
          - /etc/localtime:/etc/localtime:ro
          
        privileged: true
        restart: unless-stopped

If someone will arrive here, it seems I have solved this with this docker compose:

OTBR docker compose
otbr:
        container_name: otbr
        image: ghcr.io/ownbee/hass-otbr-docker
        restart: unless-stopped
        privileged: true # don't change this !
        network_mode: host # don't change this !
        cap_add:
          - SYS_ADMIN
          - NET_ADMIN
        environment:
            DEVICE: "/dev/ttyACM0"
            OT_RCP_DEVICE: "spinel+hdlc+uart:///dev/ttyUSB0?uart-baudrate=460800"
            BACKBONE_IF: enp1s0
            FLOW_CONTROL: 1
            FIREWALL: 1
            NAT64: 1
            BAUDRATE: 460800
            OTBR_REST_PORT: 8081
            OTBR_WEB_PORT: 7586
            AUTOFLASH_FIRMWARE: 0
        devices:
            - /dev/ttyACM0:/dev/ttyUSB0
            - /dev/net/tun:/dev/net/tun
        volumes:
          - /home/deb/otbr:/var/lib/thread