利用war包和Tomcat镜像创建Web镜像
from hub.c.163.com/library/tomcat:tag
#代表以tomcat镜像为基础
MAINTAINER huhuixin 18611551449@163.com
#代表所属人信息
COPY xxx.war /usr/local/tomcat/webapps
#copy镜像到webapps下
保存文件
运行docker build -t imgName:tag .
#代表构建当前目录,-t 加名字和版本号
提示successfully
docker images 查看创建的镜像
运行
docker run -d -p 8080:8080 jpress:latest