linux中的docker容器中安装centos镜像
docker容器中安装centos镜像
拉取指定的版本或者直接默认centos; #docker pull centos:centos7 或者直接拉取 #docker pull centos
查看本地镜像是否拉取成功 #docker images
运行镜像,并通过docker进入 #docker run -itd --name centos-test centos:centos7 centos-test是改的新名称 怎么舒服怎么来
查看centos是否在运行状态 #docker ps
根据名称进入镜像 #docker exec -it centos-test /bin/bash
以上来自https://www.runoob.com/docker/docker-install-centos.html 根据自己思路配置环境 这就可以在镜像中配置自己想要的东西了
有什么问题可以通过邮箱咨询我 1940666765qq.com