`

CentOS7上安装docker

 
阅读更多

CentOS7上安装docker

前置需求

Docker requires a 64-bit installation regardless of your CentOS version. Also, your kernel must be 3.10 at minimum, which CentOS 7 runs.

 

To check your current kernel version, open a terminal and use uname -r to display your kernel version:

 

$ uname -r
3.10.0-229.el7.x86_64

 Finally, is it recommended that you fully update your system. Please keep in mind that your system should be fully patched to fix any potential kernel bugs. Any reported kernel bugs may have already been fixed on the latest kernel packages.

 

安装

使用yum安装

  1. Log into your machine as a user with sudo or root privileges.

  2. Make sure your existing yum packages are up-to-date.

    $ sudo yum update
    
  3. Add the yum repo.

    $ cat >/etc/yum.repos.d/docker.repo <<-EOF
    [dockerrepo]
    name=Docker Repository
    baseurl=https://yum.dockerproject.org/repo/main/centos/7
    enabled=1
    gpgcheck=1
    gpgkey=https://yum.dockerproject.org/gpg
    EOF
    
  4. Install the Docker package.

    $ sudo yum install docker-engine
    
  5. Start the Docker daemon.

    [root@localhost yum.repos.d]# service docker start 
    Redirecting to /bin/systemctl start  docker.service
    [root@localhost yum.repos.d]# systemctl status docker.service 
    docker.service - Docker Application Container Engine
       Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled)
       Active: active (running) since Mon 2015-11-23 12:02:49 CST; 38s ago
         Docs: https://docs.docker.com
     Main PID: 24604 (docker)
       CGroup: /system.slice/docker.service
               └─24604 /usr/bin/docker daemon -H fd://
    
    Nov 23 12:02:42 localhost docker[24604]: time="2015-11-23T12:02:42.525348139+08:00"...k"
    Nov 23 12:02:43 localhost docker[24604]: time="2015-11-23T12:02:43.186687088+08:00"...."
    Nov 23 12:02:48 localhost docker[24604]: time="2015-11-23T12:02:48.445011858+08:00"...e"
    Nov 23 12:02:48 localhost docker[24604]: time="2015-11-23T12:02:48.707777823+08:00"...s"
    Nov 23 12:02:49 localhost docker[24604]: time="2015-11-23T12:02:49.199709207+08:00"...."
    Nov 23 12:02:49 localhost docker[24604]: time="2015-11-23T12:02:49.200088699+08:00"...."
    Nov 23 12:02:49 localhost docker[24604]: time="2015-11-23T12:02:49.200255413+08:00"...n"
    Nov 23 12:02:49 localhost docker[24604]: time="2015-11-23T12:02:49.200283835+08:00"....1
    Nov 23 12:02:49 localhost systemd[1]: Started Docker Application Container Engine.
    Hint: Some lines were ellipsized, use -l to show in full.
    
     
  6. Verify docker is installed correctly by running a test image in a container.

[linus_dev@localhost repo]$ docker run hello-world
Cannot connect to the Docker daemon. Is the docker daemon running on this host?
[root@localhost yum.repos.d]# sudo docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
b901d36b6f2f: Verifying Checksum 
0a6ba66e537a: Verifying Checksum 
Pulling repository docker.io/library/hello-world
975b84d108f1: Download complete 
3f12c794407e: Download complete 
Status: Downloaded newer image for hello-world:latest
docker.io/library/hello-world: this image was pulled from a legacy registry.  Important: This registry version will not be supported in future versions of docker.

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.
 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 Hub account:
 https://hub.docker.com

For more examples and ideas, visit:
 https://docs.docker.com/userguide/

 使用脚本安装

  1. Log into your machine as a user with sudo or root privileges.

  2. Make sure your existing yum packages are up-to-date.

    $ sudo yum update
    
  3. Run the Docker installation script.

    $ curl -sSL https://get.docker.com/ | sh
    

    This script adds the docker.repo repository and installs Docker.

  4. Start the Docker daemon.

    $ sudo service docker start
    
  5. Verify docker is installed correctly by running a test image in a container.

    $ sudo docker run hello-world
    

创建一个docker组

The docker daemon binds to a Unix socket instead of a TCP port. By default that Unix socket is owned by the user root and other users can access it with sudo. For this reason, docker daemon always runs as the root user.

To avoid having to use sudo when you use the docker command, create a Unix group called docker and add users to it. When the docker daemon starts, it makes the ownership of the Unix socket read/writable by the docker group.

Warning: The docker group is equivalent to the root user; For details on how this impacts security in your system, see Docker Daemon Attack Surface for details.

To create the docker group and add your user:

  1. Log into Centos as a user with sudo privileges.

  2. Create the docker group and add your user.

    sudo usermod -aG docker your_username

  3. Log out and log back in.

    This ensures your user is running with the correct permissions.

  4. Verify your work by running docker without sudo.

    $ docker run hello-world
    

启动时默认启动docker

To ensure Docker starts when you boot your system, do the following:

  $ sudo chkconfig docker on

If you need to add an HTTP Proxy, set a different directory or partition for the Docker runtime files, or make other customizations, read our Systemd article to learn how to customize your Systemd Docker daemon options.

卸载

You can uninstall the Docker software with yum.

  1. List the package you have installed.

    $ yum list installed | grep docker
    yum list installed | grep docker
    docker-engine.x86_64   1.7.1-1.el7 @/docker-engine-1.7.1-1.el7.x86_64.rpm
    
  2. Remove the package.

    $ sudo yum -y remove docker-engine.x86_64
    

    This command does not remove images, containers, volumes, or user-created configuration files on your host.

  3. To delete all images, containers, and volumes, run the following command:

    $ rm -rf /var/lib/docker
    
  4. Locate and delete any user-created configuration files.

 

分享到:
评论

相关推荐

    centos7.4离线安装docker

    在CentOS 7.4上安装Docker的第一步是确保系统是最新的。打开终端并执行以下命令来更新你的系统: ```bash sudo yum update -y ``` 接下来,我们需要启用 Extras 和 EPEL 软件源,因为Docker的RPM包可能依赖于这些...

    arm架构centos7安装docker

    安装步骤参考:https://blog.csdn.net/chkai123/article/details/126229727 docker离线安装 arm架构下离线安装docker docker centos7离线安装docekr 离线安装docker arm架构下安装docker arm架构centos7安装docker

    CentOS7 安装 Docker.doc

    CentOS7 是一个流行的 Linux 发行版,本文档将介绍如何在 CentOS7 上安装 Docker。 一、卸载旧的 Docker 如果您之前已经安装了 Docker,可能需要卸载旧的 Docker,以避免可能的不兼容问题。可以使用以下命令卸载 ...

    CentOS6离线安装docker以及相关依赖包(不用升级内核)

    CentOS6离线安装docker1.7,以及相关的依赖架包,包括docker-io-1.7.1-2.el6.x86_64.rpm、lxc-libs-1.0.11-1.el6.x86_64.rpm、lxc-1.0.11-1.el6.x86_64.rpm等以及device-mapper-1.02.117-12.el6_9.1.x86_64.rpm、...

    centos7.6离线安装docker-ce-19.03、nvidia-docker2

    离线环境下,在centos7.6系统上安装docker-ce-19.03,nvidia-docker2.4版本,其中docker-ce-19.03在docker-local.tar压缩文件里面,nvidia-docker2在nvidia-docker2.zip文件中。 具体安装流程如下: 1.安装docker ...

    centos6.8-离线安装docker环境所需的rpm

    在CentOS 6.8上安装Docker,首先确保系统是最新的。运行以下命令更新系统: ```bash sudo yum update -y ``` 由于CentOS 6.8的默认软件仓库中的版本较旧,不支持Docker CE(Community Edition),我们需要添加第三...

    Centos7中安装docker.pdf

    Centos7中安装docker

    centos7离线安装docker-compose,安装包

    上传文件到服务器,执行cp docker-compose-linux-x86_64 /usr/local/bin/docker-compose 安装完成,执行docker-compose -v 查看版本号是否安装成功

    centos7离线安装docker

    CentOS 7 离线安装 Docker 是指在不联网的情况下,在 CentOS 7 操作系统上安装 Docker 的过程。 Docker 是一个流行的容器化平台,可以帮助开发者快速构建、测试和部署应用程序。下面是 CentOS 7 离线安装 Docker 的...

    centos7 docker、docker-compose离线安装包以及安装脚本

    解压上传到服务器 安装docker sh install.sh docker-18.03.1-ce.tgz 卸载docker sh uninstall.sh 安装docker-compose sh docker-compose.sh docker-compose-Linux-x86_64 如有不明白的欢迎随时咨询

    centos6离线安装docker相关依赖包 及 自动安装脚本

    总结来说,离线在CentOS 6上安装Docker需要准备离线依赖包,编写自动化安装脚本,然后执行该脚本来安装所有组件。虽然过程相对复杂,但通过这种方式,你可以在无法连接到互联网的服务器上成功部署Docker。为了保持...

    centos7.6机器上离线安装docker-ce-19.03、nvidia-docker2

    在CentOS 7.6上离线安装Docker CE 19.03和Nvidia Docker 2可以按照以下步骤进行操作: 首先,您需要从Docker官方网站或Nvidia Docker官方网站下载对应版本的安装包。确保选择与您的操作系统和架构(例如x86_64)...

    centos 内网一键安装docker脚本

    centos 内网服务器安装docker脚本,一键安装

    centos7 的 docker 离线安装包,rpm安装可用

    centos 7离线安装docker的rpm包,可离线安装,给大家分享,安装方式: 注意顺序: rpm -ivh docker-engine-selinux-17.05.0.ce-1.el7.centos.noarch.rpm rpm -ivh docker-engine-17.05.0.ce-1.el7.centos.x86_64.rpm...

    Centos7安装Docker.md

    Centos7安装Docker详细安装

    Centos7离线安装Docker

    在CentOS 7上,SELinux是默认启用的,它为操作系统提供强制访问控制,增加系统的安全性。`container-selinux` 是Docker运行时所需的组件,确保容器在隔离的环境中安全运行。 2. `docker-ce-17.12.0.ce-1.el7.centos...

    CentOS7_nvidia-docker2安装.rar

    centos7 nvidia-docker2离线安装包,使用命令rpm -ivh --force *.rpm sudo systemctl restart docker sudo systemctl daemon-reload 依次执行此命令,如果 事先安装了containerd.io 则需要先进行 rpm -qa | grep ...

    centos7系统中docker离线安装包

    centos7系统中docker离线安装包

    在CentOS 7中安装 Docker

    在CentOS 7中安装 Docker 1、新建非root用户账号 2、安装Docker

Global site tag (gtag.js) - Google Analytics