首页 > 其他分享 >Docker的安装

Docker的安装

时间:2023-12-11 15:15:21浏览次数:32  
标签:ce hello yum world Docker 安装 docker

初识Docker

​ 这里推荐一个Docker中午文档

何为Docker

Docker 使用 Google 公司推出的 Go 语言 进行开发实现,基于 Linux 内核的 cgroupnamespace,以及 OverlayFS 类的 Union FS 等技术,对进程进行封装隔离,属于 操作系统层面的虚拟化技术。由于隔离的进程独立于宿主和其它的隔离的进程,因此也称其为容器。最初实现是基于 LXC,从 0.7 版本以后开始去除 LXC,转而使用自行开发的 libcontainer,从 1.11 版本开始,则进一步演进为使用 runCcontainerd

runc 是一个 Linux 命令行工具,用于根据 OCI容器运行时规范 创建和运行容器。

containerd 是一个守护程序,它管理容器生命周期,提供了在一个节点上执行容器和管理镜像的最小功能集。

Docker 在容器的基础上,进行了进一步的封装,从文件系统、网络互联到进程隔离等等,极大的简化了容器的创建和维护。使得 Docker 技术比虚拟机技术更为轻便、快捷。

总结:Docker比传统虚拟化技术更轻巧。例如,我们想在Linux系统跑一个程序就得通过VMware创建CentOS系统时会提示你是否加载声卡等选项,这是直接虚拟化了整套电脑的软硬件,而Docker只会封装你这个程序最低运行标准所需的数据

Linux安装Docker

​ 查看Docker官网文档Docker对CentOS系统只支持CenOS 7以上的版本,因此可以输一下命令查看当前CentOS系统的版本:

[root@TestMachine ~]# cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)

卸载旧版本Docker

如果之前安装过,可以通过一下命令卸载,如没,救跳过。

yum remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-engine

安装gcc

如果没有安装gcc,需要先安装gcc。(一般配置好Linux环境的都会有)。

yum -y install gcc
yum -y install gcc-c++

使用 rpm 存储库安装

​ 在新主机上首次安装 Docker Engine 之前,您需要 需要设置 Docker 存储库。之后,您可以安装和更新 存储库中的 Docker。

  • 设置存储库

安装yum-utils软件包(提供yum-config-manager实用程序)并设置存储库。

yum install -y yum-utils
# yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

官网推荐设置Docker存储库使用这个命令:yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

将存储库设置成国外,在国内访问会很麻烦,因此这里替换成ailiyun

yum-config-manager \
    --add-repo \
    https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
  • 安装docker引擎
yum install docker-ce docker-ce-cli containerd.io

该命令会安装最新版本的Docker,要测试版本可以执行这个命令:yum-config-manager --enable docker-ce-test

测试Docker

  • 启动Docker
systemctl start docker
  • 查看Docker版本
[root@TestMachine ~]# docker version
Client: Docker Engine - Community
 Version:           24.0.7
 API version:       1.43
 Go version:        go1.20.10
 Git commit:        afdd53b
 Built:             Thu Oct 26 09:11:35 2023
 OS/Arch:           linux/amd64
 Context:           default

Server: Docker Engine - Community
 Engine:
  Version:          24.0.7
  API version:      1.43 (minimum version 1.12)
  Go version:       go1.20.10
  Git commit:       311b9ff
  Built:            Thu Oct 26 09:10:36 2023
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          1.6.25
  GitCommit:        d8f198a4ed8892c764191ef7b3b06d8a2eeb5c7f
 runc:
  Version:          1.1.10
  GitCommit:        v1.1.10-0-g18a0cb0
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0
  • 执行镜像
[root@TestMachine ~]# docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
719385e32844: Pull complete 
Digest: sha256:c79d06dfdfd3d3eb04cafd0dc2bacab0992ebc243e083cabe208bac4dd7759e0
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的执行过程会先查看本地是否有该镜像,如果没有就会去远程仓库拉取镜像到本地,再执行该镜像,因此会提示:Unable to find image 'hello-world:latest' locally

卸载 Docker 引擎

  1. 卸载 Docker Engine、CLI、containerd 和 Docker Compose 包:

     yum remove docker-ce docker-ce-cli containerd.io 
    
  2. 主机上的映像、容器、卷或自定义配置文件 不会自动删除。要删除所有映像、容器和卷,请执行以下操作:

    rm -rf /var/lib/docker
    rm -rf /var/lib/containerd
    

您必须手动删除任何编辑的配置文件。

镜像加速

阿里云为每个用户提供个人镜像加速,可以自行去阿里云官网操作。

操作完后执行hello-world

[root@TestMachine ~]# docker run hello-world

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启动没问题

Docker执行镜像流程图

标签:ce,hello,yum,world,Docker,安装,docker
From: https://www.cnblogs.com/Mr-Sponge/p/17894442.html

相关文章

  • qt和cmake安装
    1/qtIndexof/archive/qt  2、cmakeDownloadCMake 安装比较简单 记得选择addpath,这样就不用手动添加环境变量了 3、vscode插件c/c++ cmake cmaketools qtconfigure qttools ......
  • GCC源码编译安装升级
    gcc官网:​​https://gcc.gnu.org/​​1.安装系统默认gcc(有则忽略)yuminstall-ygccgcc-c++make2.下载高版本gcc源码包下载地址:​​https://ftp.gnu.org/gnu/gcc/​wgethttps://ftp.gnu.org/gnu/gcc/gcc-7.5.0/gcc-7.5.0.tar.gz3.源码编译安装#解压tar-xvfgcc......
  • liunx二进制包安装5.6MySQL数据库
    官网下载对应的二进制版本安装包https://downloads.mysql.com/archives/community/#解压二进制压缩包[root@localhost~]#wgethttps://cdn.mysql.com/archives/mysql-5.6/mysql-5.6.20-linux-glibc2.5-x86_64.tar.gz[root@localhost~]#tarxfmysql-5.5.32-linux2.......
  • centos7安装jdk8
    1.去oracle官网下载jdk1.8,需要注册,下载后缀为.tar.gz,比如jdk-8u381-linux-x64.tar.gz2.上传到服务器,解压建立文件夹,将java安装到指定目录mkdir-p/home/java8由于java的安装包解压后默认套了一层,解压后默认会有jdk1.8.0_381这一层文件夹,我不想要,所以解压的时候......
  • ENVI 5.6安装教程及安装包下载
    下载: http://dt1.8tupian.net/2/29913a31b1000.pg3软件介绍目前ENVI5.6版本推出了许多有用的新功能,比如深度学习、cropscience等。如果是遥感专业人士,还是建议安装功能更强大的5.6版本(5.6和5.3版本可以共存)。安装主程序安装包总目录:(1)打开软件目录,点击envi56-win.exe......
  • arm架构下,VMware Fusion 13.0.1 安装 windows11 踩的坑
    一、提示网络安装出错虚拟机-设置-选择用于启动虚拟机的设备:硬盘NVMe(之间尝试过启动到bios等操作)二、提示不满足win11安装条件1、将cpu设置为4核2、磁盘设置为100g且为提前分配3、虚拟机-设置-加密-选择了只有TPM所需的文件已加密并设置密码4、添加设备,将“可信平台模块”添......
  • HyperWorks2021软件安装教程
    下载软件资源下载产品介绍:HyperWorks一款功能强大的开放式架构仿真软件。拥有先进的技术以及高性能、高效和创新的产品,为用户提供了设计、仿真和制造等服务。支持电磁分析设计、材料建模制造、多物理场分析等功能,用户可以进行庞大且复杂的有限元模型创建操作。软件特色1......
  • Adobe Acrobat 2023安装教程
    一、产品介绍:AdobeAcrobat中文版是一款由Adobe官方推出的PDF编辑和阅读软件,是目前互联网上最专业最优秀的桌面pdf解决方案,它将全球最佳的PDF解决方案提升到新的高度,配有直观触控式界面,通过开发强大的新功能,使用户能在任何地方完成工作。新工具中心可更简单迅速地访问最常使用的......
  • CAD2024 下载及安装教程
    一、下载:资源下载二、安装教程:解压之前,关闭杀毒软件(包括系统自带安全中心、第三方安全卫士/杀毒软件等)关闭方法可参考一键关闭Win系统自带杀毒软件/安全中心(附工具下载)适用于所有win系统(1)下载好安装包并解压,就可以得到如下图的文件:(2)用管理员身份运行“主程序”,让主程序......
  • arcgis pro3.0-3.0.1-3.0.2安装教程大全及安装包下载
    一.产品介绍:ArcGISPro这一功能强大的单桌面GIS应用程序是一款功能丰富的软件,采用ArcGISPro用户社区提供的增强功能和创意进行开发。ArcGISPro支持2D、3D和4D模式下的数据可视化、高级分析和权威数据维护。支持通过WebGIS在一系列ArcGIS产品(例如ArcGISOnli......