UI of Docker Containers are not loading in the host network

Running Docker Container, But the UI of the Containers are not loading in the host network !
What may be the issue .

The Command I used is:
docker run -d --network host -t eclipse/kura

After this the UI loads on https://localhost, but it is not loading

If you’re looking at the install doc for eclipse kura, it seems like the command is to map port 443 (https) to the container as well:
docker run -d -p 443:443 -t eclipse/kura
and if you’re trying to do https://, then yes you need that port 443. otherwise it would assume port 80