CentOs docker安装与测试
Posted Dontla
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOs docker安装与测试相关的知识,希望对你有一定的参考价值。
参考文章3:【docker教程】docker视频教程(ubuntu)数据卷挂载、数据卷容器volume、端口映射(镜像叠加,分层复用)rootfs、bootfs(没看完)
一键安装docker
sudo curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
启动docker
sudo systemctl start docker
查看docker版本
docker version
拉取hello-world
docker pull hello-world //拉取镜像
docker images //查看镜像列表
docker run hello-world //运行镜像
以上是关于CentOs docker安装与测试的主要内容,如果未能解决你的问题,请参考以下文章