目录1:首先构建一个SpringBoot项目2:编写一个controller用于测试3:本机启动观察是否能够成功访问4:打包5:找到生成的jar包位置6:jar包的启动运行测试7:编写Dockerfile文件8:把我们的jar包和Dockerfile文件上传服务器9:利用上传的文件构建镜像10:利用镜像运行容器11:测试访问
1:首先构建一个SpringBoot项目
只需要添加web依赖
2:编写一个controller用于测试
3:本机启动观察是否能够成功访问
4:打包
5:找到生成的jar包位置
6:jar包的启动运行测试
7:编写Dockerfile文件
8:把我们的jar包和Dockerfile文件上传服务器
9:利用上传的文件构建镜像
[root@iZwz9hv1phm24s3jicy8x1Z idea]# ls
Dockerfile Docker-Package-0.0.1-SNAPSHOT.jar
[root@iZwz9hv1phm24s3jicy8x1Z idea]# docker build -t dongmu-springboot-project .
Sending build context to Docker daemon 17.54MB
Step 1/5 : FROM java:8
8: Pulling from library/java
5040bd298390: Pull complete
fce5728aad85: Pull complete
76610ec20bf5: Pull complete
60170fec2151: Pull complete
e98f73de8f0d: Pull complete
11f7af24ed9c: Pull complete
49e2d6393f32: Pull complete
bb9cdec9c7f3: Pull complete
Digest: sha256:c1ff613e8ba25833d2e1940da0940c3824f03f802c449f3d1815a66b7f8c0e9d
Status: Downloaded newer image for java:8
—
暂无评论内容