Can't set host port. Works only :5000 port

You just forwarded the host port 8067 to the container port 8067. It will not change the port that the service in the container is listening on. Change only the host port and leave the container port as 5000.

docker run -d -p 8067:5000 identidock

What problem? I think it works as expected.

And please, use code blocks instead of quotes next time so codes, terminal outputs and log messages will be more readable:

1 Like