【Docker】CentOS 7安装Docker
程序员文章站
2022-06-03 23:41:38
...
一、安装docker
依次执行以下命令
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum install docker-ce docker-ce-cli containerd.io
二、配置阿里云镜像加速器
1.登录阿里云,打开控制台
2.找到容器镜像服务
→镜像加速器
,选中CentOS,根据提示进行更改即可
配置完成后,通过docker info
命令可查看镜像是否配置成功,如果配置成功,会有Registry Mirrors:
一项,后面是你的镜像地址。
运行hello-world
docker run hello-world
打印如下信息,则运行成功!
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
1b930d010525: Pull complete
Digest: sha256:4fe721ccc2e8dc7362278a29dc660d833570ec2682f4e4194f4ee23e415e1064
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
下一篇: Docker Compose