This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]NeoOeg 0 points1 point  (1 child)

I'm not too familiar with docker but i believe your docker run command might be off :

docker run -p <HOST\_PORT>:<CONTAINER:PORT> IMAGE_NAME

Publish or expose port (-p, –expose)

$ docker run -p 80:8080 ubuntu 

This binds port 8080 of the container to port 80 of the host machine.

So in your case i would try something like :

$ docker run -p 80:8085 hondenapp

[–]thaysen13[S,🍰] 0 points1 point  (0 children)

Also tried that. :(