Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm created a simple docker image with Spring Boot based on steps at https://spring.io/guides/gs/spring-boot-docker/.

Apparently the application is running normally, but I can not access it through the Browser.

To get my docker image: docker push renanshin/gs-spring-boot-docker

Here's an image of the Spring Boot of my Docker image.

Initialization of Spring Boot at my docker

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
269 views
Welcome To Ask or Share your Answers For Others

1 Answer

After looking at the screenshot provided by the OP, it seems @MarkRotteveel's comment is right.

Namely, the OP is running Docker on Windows, probably using Docker Toolbox for Windows (the legacy distribution based on docker machine), and it happens that in this case, docker run -p 8080:8080 … won't expose the service to 127.0.0.1:8080 on the Windows host, but to a different IP address.

For details, see this page of the online doc and that other page.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...