Docker为什么会出现?

传统的开发过程中,开发者在本地开发应用,然后由运维部署到服务器上; 在这个过程中,开发环境和服务器环境是相对独立的。 例如:开发人员在本地搭建了mysql、nginx等。运维人员也需要在服务器上安装相应的应用,相当于不同的环境不同的人做了相同的事情。

docker就是为了解决这样子的痛点出现,docker的核心思想是隔离,docker可以做到应用跟环境一起打包成镜像,运维只需要拉取对应的镜像就能 直接运行,不需要单独再配置环境。

安装Docker前需要了解的信息

安装之前先查看centos环境信息,查看指令如下:

# 指令
uname -r

#系统内核是3.10以上的
[root@xianxin ~]# uname -r
3.10.0-957.21.3.el7.x86_64
[root@xianxin ~]# 

# 查看系统版本信息
[root@xianxin ~]# cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
[root@xianxin ~]# 

安装步骤

1,首先卸载旧的版本

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

2,安装需要的安装包

sudo yum install -y yum-utils

3,设置镜像库

sudo yum-config-manager \
    --add-repo \
    https://download.docker.com/linux/centos/docker-ce.repo
# 建议使用阿里云镜像库
sudo yum-config-manager \
    --add-repo \
    http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

4,更新软件包索引

sudo yum  makecache fast

5,正式安装docker

sudo yum install docker-ce docker-ce-cli containerd.io
# 解释 docker-ce  社区  ee  企业版

6,启动docker

sudo systemctl start docker

7,判断docker启动成功

docker version

8,启动 hello-word程序

sudo docker run hello-world

9,查看下载的hello-world镜像

docker images
[root@xianxin ~]# docker images
REPOSITORY    TAG       IMAGE ID       CREATED        SIZE
hello-world   latest    d1165f221234   5 months ago   13.3kB

卸载docke

1,卸载docker

sudo yum remove docker-ce docker-ce-cli containerd.io

2,删除docker资源

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

阿里云配置使用

后续更新…

Docker底层原理

Docker是怎么工作的?

Docker是一个Client-Server结构的系统,Docker的守护进程运行在主机上,通过Socket从客户端访问!

DockerServer接收到Docker-Client的指令,就会执行这个命令!

Docker的常用命令

docker version      # 显示docker的版本信息
docker info         # 显示docker的系统信息,包括镜像和容器数量
docker 命令 --help  # 帮助命令

Docker的镜像命令

docker images #查看所有本地主机上的镜像

docker images     # 查看所有本地主机上的镜像
[root@xianxin ~]# docker images
REPOSITORY    TAG       IMAGE ID       CREATED        SIZE
hello-world   latest    d1165f221234   5 months ago   13.3kB

# 解释
REPOSITORY   # 镜像的仓库源
TAG          # 镜像的标签
IMAGE ID     # 镜像的ID
CREATED      # 镜像的创建时间
SIZE         # 镜像大小

可选项

 -a, --all             # 列出所有的镜像
      --digests         Show digests
  -f, --filter filter   Filter output based on conditions provided
      --format string   Pretty-print images using a Go template
      --no-trunc        Don't truncate output
  -q, --quiet           # 只显示镜像id

docker search #搜索镜像

[root@xianxin ~]# docker search  mysql
NAME                              DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
mysql                             MySQL is a widely used, open-source relation…   11281     [OK]       
mariadb                           MariaDB Server is a high performing open sou…   4280 

可选项

--filter=STARS=3000 #搜索出来的镜像就是STARS大于3000的
[root@xianxin ~]# docker search mysql --filter=STARS=5000
NAME      DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
mysql     MySQL is a widely used, open-source relation…   11281     [OK]       
[root@xianxin ~]# 

docer pull #下载镜像

docker  pull mysql  # 默认安装最新版本

docker pull 镜像名[:tag] 下载指定版本

dockers pull mysql:5.7  # 安装5.7版本

删除镜像

docker rmi -f 镜像id  # 删除指定的镜像

docker rmi -f 镜像id  镜像id  # 删除多个镜像

docker rmi -f $(docker images -aq)  # 删除全部的镜像

Docker的容器命令

说明:我们有了镜像才可以创建容器,linux,下载一个centos镜像来学习

docker pull  centos

新建容器并启动

docker run [可选参数] image

# 参数说明

--name="NAME" # 容器名字  tomcat01  tomcat02  用来区分容器

-d            # 后台运行方式
-it           # 使用交互方式运行,进入容器查看内容
-p            指定容器的端口 -p   8080:8080
  -p ip:主机端口:容器端口
  -p 主机端口:容器端口(常用)
  -p  容器端口
-P  随机指定端口

# 测试并进入容器
docker run -it centos /bin/bash

#退出容器,返回到主机

exit  #  直接容器停止并退出

ctrl+p+q  # 容器不停止退出 

删除容器

docker rm  容器id  # 删除指定的容器,不能删除正在运行的容器
docker rm -f $(docker ps -aq)  # 删除所有的容器
docker ps -a -q |xargs docker rm # 删除所有的容器

启动和停止容器的操作

docker start  容器id  # 启动容器

docker restart  容器id  # 重启容器

docker  stop  容器id  # 停止当前正在运行的容器

docker  kill  容器id  #  强制停止当前容器
打赏作者
微信
支付宝

发表评论

返回顶部