79308216

Date: 2024-12-25 19:34:35
Score: 0.5
Natty:
Report link

You need to expose the relevant ports on the host IP. You can do that using the -p switch to docker run.

For example:

docker run -p 445:445 container

The above will map port 445 on the local host to the docker container. Make sure nothing else is listening on the same port.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user10504