制作自己的镜像
从互联网拉取镜像
docker pull centos:7
启动容器
docker run -it -d centos:7 /bin/bash
进入启动容器
docker exec -it -v /data/soft:
2022-08-26