系统环境
[root@instance-0i5dc7sz ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
[root@instance-0i5dc7sz ~]# uname -r
3.10.0-1062.4.1.el7.x86_64
安装Docker
安装Jdk
安装Maven
构建镜像
1 | mvn package docker:build |
运行容器
1 | docker run --name auto_task --restart=always -p 8888:8888 -d jac/auto_task:latest |
修正容器时间
默认alpine系统时间不对,需要修改成北京时间
参考:
https://waylau.com/docker-spring-boot/
http://www.ityouknow.com/springboot/2018/03/19/spring-boot-docker.html
https://www.jianshu.com/p/a25c8a93990e