1.安装如下树形结构创建目录及文件,内容如下:
目录结构:
[root@centos79 ~]# tree demo
demo
├── index.html
└── WEB-INF
└── web.xml
1 directory, 2 files
[root@centos79 ~]#
index.html文件内容
[root@centos79 demo]# cat index.html
<h1>hello docker!</h1>
web.xml文件内容
[root@centos79 WEB-INF]# cat web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
</web-app>
2.把demo打包成tar.gz格式文件
命令:
tar zcvf demo.tar.gz demo/
[root@centos79 ~]# tar zcvf demo.tar.gz demo/
demo/
demo/index.html
demo/WEB-INF/
demo/WEB-