Skip to main content

Docker 安装 Centos,并共享目录和映射端口

1.拉取centos

docker pull centos:centos7

2.运行centos

docker run -itd --name  centos7 -p 8800:80 -v ~/workspace/diszz:/www --privileged=true centos:centos7 /usr/sbin/init

注解:

centos7 为命名的容器名称

8800:80 容器里的80端口对应本机的8800端口,即访问本机的8800即可访问容器的80

~/workspace/diszz:/www 本机的指定目录共享到容器的/www

privileged=true 本机为mac,涉及权限方面的操作

3.把运行的centos7做成新镜像

docker ps -a
docker commit eafd9111ada6 centos7/v1