Wowza Community

Can't set or change host ip with streaming engine from docker image

I’ve started a wowza streaming engine from the docker image. It seems to go correct, except for the part where I add the ip address it should use. When I get into the dashboard it says "Host - Server 172.17.0.2 " (this is not the correct ip)

Even after going into the server setup tab > properties and change the “IP address” and “rmiServerHostName” and restart, it still doesn’t change.

This is the command I run:

docker run -d --name wowza-container -v /home/wowza-config:/var/lib/wowza --restart always --expose 1935/tcp --expose 8086/tcp --expose 8087/tcp --expose 8088/tcp --publish 1935:1935 --publish 8086:8086 --publish 8087:8087 --publish 8088:8088 --entrypoint /sbin/entrypoint.sh --env WSE_IP_PARAM=123.456.789.123 waja/wowza-streaming-engine-persistent:latest

What am I doing wrong?