When trying to download a docker image for Eureka using docker pull, I got the following error message:
docker pull netflixoss/eureka
Using default tag: latest
Error response from daemon: manifest for netflixoss/eureka:latest not found
It seems that by default a :latest tag is added to the command. When I checked the Docker Hub I noticed that the ‘latest’ tag didn’t exist:
I changed the command to explicitly include the tag:
docker pull netflixoss/eureka:1.3.1
That solved the problem…