1. docker拉取官方centos镜像
docker pull centos:centos7
2. 等待下载完成后,我们就可以在本地镜像列表里查到
mac@MacdeMacBook-Pro ~ % docker images REPOSITORY TAG IMAGE ID CREATED SIZE centos centos7 8652b9f0cb4c 9 months ago 204MB
3.运行容器(直接挂载主机的/Users/mac/bingo/test_dir目录到容器的/root/test_dir目录)
docker run --privileged --name=centos7_01 -itd -v /Users/mac/bingo/test_dir:/root/test_dir centos:centos7
命令解释:
--privileged #超级权限
--name #指定容器名称
4.进入容器
docker attach centos7_01
5.退出容器
exit
6.重新启动容器并进入容器(exit已经退出并关闭了容器)
docker start -i centos7_01