Start deploying the Springboot project at Docker
1. In Centos7 ~ Create a folder Docker to place the above Dockerfile and Springboot packaged items Docker_spring_boot.jar
2.
Under the Docker file directive: Docker build-t Docker.
To execute the Docker build command, Docker builds a new image based on the commands you have defined in Dockerfile.
-T represents the tag of the image to be built. Represents the current directory, which is the directory where dockerfile resides. You can then see the start of the project after the build is complete by downloading various dependent maven, various jars. Under the Docker file, use the instructions: Docker run-d-P 8080:8080 Docker to run the Springboot project, you can see the built-in view of Docker's access IP address: through Ifconfig to the end, access to the local browser:
Docker Builds Spring boot project