给springboot项目打包
先clean,再package
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/89837cb06f3d4e178b814109a28f7039.png
把jar包和dockerfile上传到服务器中
进入到上传的路径下,构建一个容器
cd /home/hy/dockerfile/
docker build -t hy/springboot:2.0 .
挂载
docker run -p 9002:8889 -v /home/hy/dockerfile/:/home/trunk/ --name hy-springboot -d hy/springboot:2.0
其中:/home/trunk/是dockerfile里配置的