提取docker容器的文件系统
docker run -it --name mycontainer ubuntu bash apt-get update apt-get install -y curl wget vim exit docker export 容器名称 > myimage.tar mkdir myrootfs tar -xf myimage.tar -C myrootfs/ chroot myrootfs/
docker run -it --name mycontainer ubuntu bash apt-get update apt-get install -y curl wget vim exit docker export 容器名称 > myimage.tar mkdir myrootfs tar -xf myimage.tar -C myrootfs/ chroot myrootfs/