Docker homekit connection not working

Hi,
i’m new in openHab.
I’m using docker to run openhab.

docker run
–name openhab
–net=host
-v /etc/localtime:/etc/localtime:ro
-v /etc/timezone:/etc/timezone:ro
-v /opt/openhab/conf:/openhab/conf
-v /opt/openhab/userdata:/openhab/userdata
-v /opt/openhab/addons:/openhab/addons
-d
-e USER_ID=999
-e GROUP_ID=995
-e “EXTRA_JAVA_OPTS=-Duser.timezone=Europe/Berlin”
–restart=always
openhab/openhab:2.4.0

The USER_ID and GROUP_ID is the one from the user of the host. I’ve greated according the documentation: https://www.openhab.org/docs/installation/docker.html

The homekit config file looks like this:

networkInterface=“182.168.1.3”
pin=“031-11-134”
port=“9124”
service.pid=“org.openhab.homekit”
thermostatAutoMode=“Auto”
thermostatCoolMode=“CoolOn”
thermostatHeatMode=“HeatOn”
thermostatOffMode=“Off”
useFahrenheitTemperature=B"false"

I could not connect my home app on the IPhone. Getting the error:
What am I doing wrong?

Are you sure the IP starts with 182 and not 192? Typically home networks use 192.168.x.x IP addresses. I don’t think 182 addresses are valid how home use.

You are right. I changed it to networkInterface=“192.168.1.3” this ist the one of the host raspi. I’ve restarted the container before testing.
But it still doesn’t work.