1.在虚拟机安装docker
1、检查内核版本,必须是3.10及以上
uname -r
2、安装docker
yum install docker
3、输入y确认安装
4、启动docker
[root@localhost ~]# systemctl start docker
[root@localhost ~]# docker -v
Docker version 1.12.6, build 3e8e77d/1.12.6
5、开机启动docker
[root@localhost ~]# systemctl enable docker
Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.
6、停止docker
systemctl stop docker
7、重启docker服务
service docker restart
2.编写dockerfile
详看教程
> https://www.runoob.com/docker/docker-dockerfile.html
3.使用docker命令生成镜像
进入虚拟机目录(必须有jar包和dockerfile)
运行命令生成镜像
docker build 镜像名 .
查看镜像存在否
docker images