安装Docker容器(Linux系统)

环境:CentOS7

  • 更新yum包
[root@Master ~]# yum update
Loaded plugins: fastestmirror
Determining fastest mirrors
 * base: mirrors.aliyun.com
 * extras: mirrors.aliyun.com
 * updates: mirrors.aliyun.com
base                                                            | 3.6 kB  00:00:00
extras                                                          | 2.9 kB  00:00:00
updates                                                         | 2.9 kB  00:00:00
  • 安装相关软件包(yum-util 提供yum-config-manager功能,另外两个是devicemapper驱动依赖的)
[root@Master ~]# yum install -y yum-utils device-mapper-persistent-data lvm2
Loaded plugins: fastestmirror
  • 设置yum源为阿里云
[root@Master ~]# yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
Loaded plugins: fastestmirror
adding repo from: http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
grabbing file http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo to /etc/yum.repos.d/docker-ce.repo
repo saved to /etc/yum.repos.d/docker-ce.repo
  • 安装docker
[root@Master ~]# yum install docker-ce
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.aliyun.com
 * extras: mirrors.aliyun.com
  • 验证是否成功
[root@Master ~]# docker -v
Docker version 20.10.8, build 3967b7d

[root@Master docker]# docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
b8dfde127a29: Pull complete
Digest: sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1
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服务
[root@Master ~]# systemctl start docker
[root@Master ~]# systemctl status docker
[root@Master ~]# systemctl enable docker
Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.
### 如何在Linux安装Docker容器 要在Linux系统安装Docker容器,可以按照以下方法操作。此过程适用于基于Debian的发行版(如Ubuntu)。以下是详细的说明: 运行命令以更新系统的包索引并确保获取最新的软件版本[^1]: ```bash sudo apt update && sudo apt upgrade -y ``` 接着,为了使Docker能够顺利安装,需先设置必要的依赖项来允许`apt`通过HTTPS使用仓库: ```bash sudo apt install apt-transport-https ca-certificates curl software-properties-common -y ``` 随后添加Docker官方GPG密钥以便验证下载的内容未被篡改: ```bash curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg ``` 配置APT源指向稳定版本的Docker存储库: ```bash echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null ``` 再次刷新APT缓存以包含新加入的Docker仓库信息: ```bash sudo apt update ``` 最后执行实际的Docker安装指令: ```bash sudo apt install docker-ce -y ``` 完成上述步骤之后,可以通过下面这条简单命令测试Docker服务是否正常启动以及其基本功能是否可用: ```bash sudo systemctl status docker ``` 如果一切无误,则表示已成功部署好环境用于后续创建和管理各类容器实例。 对于更复杂的场景比如持久化数据卷或者指定端口映射等高级需求可参考如下例子[^3]: 启动一个后台运行的服务型容器,并挂载主机目录到容器内部作为共享存储空间同时设定重启策略保证稳定性: ```bash sudo docker run -d \ -v $HOST_VOLUME:/var/lib/mysql \ --restart=unless-stopped \ -p 8080:8080 \ rancher/server ``` 以上就是关于如何一步步指导您在Linux平台上正确安装与初步使用的全部内容。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值