Can you explain me one thing related to Docker container ports?
Scenario: I've created a new Dockerfile and docker-compose.yml file (https://github.com/fdolsky321/Jenkins_Docker) and I used EXPOSE 49005 as well as I configured both ports in docker-compose.yml to 49005. (is the volume in docker-compose set correctly? I'm using Windows 10 Pro).
Then I just build and push that and in the end, I used docker-compose up... But then I saw, that there are still default ports 8080 and 50000, can you explain me, how is possible, that there are ocuring still these ports, which I don't want to use?
Then I'm trying to run this image, but I'm not able to open jenkins on any port (8080, 50000, 49005). It's working pretty well, when I'm using docker run command, but I would like to use the ports used in docker-compose.yml file.
Can you give any advice, how ports work in docker?
If you run
docker ps
you will see something like this0.0.0.0:49005->8080/tcp
in your ports section for your container.If you are using docker run then you need to do
docker run -p 49005:49005 my-image
or
If you are using docker-compose then you need to add