Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to visit a docker service by ip address

I'm new with docker and I'm probably missing a lot, although i went through the basic documentation and I'm trying to deploy a simple Spring Boot API

I've deployed my API as a docker-spring-boot .jar file , then i installed docker and pushed it with the following commands:

  • sudo docker login
  • sudo docker tag docker-spring-boot phillalexakis/myfirstapi:01
  • sudo docker push phillalexakis/myfirstapi:01

Then i started the API with the docker run command:

sudo docker run -p 7777:8085 phillalexakis/myfirstapi:01

When i visit localhost:7777/hello I'm getting the desired response

This is my Dockerfile

FROM openjdk:8
ADD target/docker-spring-boot.jar docker-spring-boot.jar
EXPOSE 8085
ENTRYPOINT ["java","-jar","docker-spring-boot.jar"]

Based on this answered post this the command to get the ip address

docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' container_name_or_id

So, i run it with container_name_or_id = phillalexakis/myfirstapi:01 and I'm getting this error

Template parsing error: template: :1:24: executing "" at <.NetworkSettings.Networks>: map has no entry for key "NetworkSettings"

If i manage somehow to get the IP will i be able to visit it and get the same response?

This is how i have it in my mind: ip:7777/hello

like image 211
Phill Alexakis Avatar asked Dec 13 '22 10:12

Phill Alexakis


2 Answers

You have used the image name and not the container name.
Get the container name by executing docker ps.
The container ID is the value in the first column, the container name is the value in the last column. You can use both.

Then, when you have the IP, you will be able to access your API at IP:8085/hello, not IP:7777/hello

The port 7777 is available on the Docker Host and maps to the port 8085 on the container. If you are accessing the container directly - which you do, when you use its IP address - you need to use the port that the container exposes.


There is also another alternative:
You can give the container a name when you start it by specifying the --name parameter:

sudo docker run -p 7777:8085 --name spring_api phillalexakis/myfirstapi:01

Now, from your Docker host, you can access your API by using that name: spring_api:8085/hello

like image 200
Daniel Hilgarth Avatar answered Jan 07 '23 11:01

Daniel Hilgarth


You should never need to look up that IP address, and it often isn't useful.

If you're trying to call the service from outside Docker space, you've done the right thing: use the docker run -p option to publish its port to the host, and use the name of the host to access it. If you're trying to call it from another container, create a network, make sure to run both containers with a --net option pointing at that network, and they can reach other using the other's --name as a hostname, and the container-internal port the other service is listening on (-p options have no effect and aren't required).

The Docker-internal IP address just doesn't work in a variety of common situations. If you're on a different host, it will be unreachable. If your local Docker setup uses a virtual machine (Docker Machine, Docker for Mac, minikube, ...) you can't reach the IP address directly from the host. Even if it does work, when you delete and recreate the container, it's likely to change. Looking it up as you note also requires an additional (privileged) operation, which the docker run -p path avoids.


The invocation you have matches the docker inspect documentation (as @DanielHilgarth notes, make sure to run it on the container and not the image). In the specific situation where it will work (you are on the same native-Linux host as the container) you will need to use the unmapped port, e.g. http://172.17.0.2:8085/hello.

like image 41
David Maze Avatar answered Jan 07 '23 13:01

David Maze