赞
踩
镜像(image):
容器(container):
仓库(repostory):
环境准备
环境查看
# 系统内核是3.10以上的
[root@zyyy ~]# uname -r
3.10.0-1160.42.2.el7.x86_64
# 系统版本
[root@zyyy ~]# 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"
安装
#1、如果已经安装过Docker,先卸载旧的版本
sudo yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine
sudo yum install -y yum-utils
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-BHLwGxwg-1651654586080)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20220504104850801.png)]
# 官方默认为国外的,需要替换成国内的
sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
# 国内的 阿里云
yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
# 安装之前可以更新一下yum软件包的索引
[root@zyyy ~]# yum makecache fast
# ce为社区版 ee为企业版
sudo yum install docker-ce docker-ce-cli containerd.io docker-compose-plugin
#如果需要安装指定版本 version指定版本
sudo yum install docker-ce-<VERSION_STRING> docker-ce-cli-<VERSION_STRING> containerd.io docker-compose-plugin
#启动docker
systemctl start docker
#查看版本
docker version
#hello-world
docker run hello-world
#/var/lib/docker docker的默认资源路径
[root@zyyy ~]# docker images
如果你不在使用docker执行下面两步
#移除引擎
sudo yum remove docker-ce docker-ce-cli containerd.io
#删除镜像和卷
sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd
如果还是觉得不够快的话可以开启此项服务
注意下面的配置文件需要用自己的,否则会报错
注册阿里云就有,免费!!!
#四条命令依次执行
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://89ceespw.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
docker运行时会判断本机是否有此镜像,如果有就运行
如果没有就去仓库寻找 ,如果没找到返回错误
找到了就Pull (下载) 到本地
最后运行
Docker是一个Client-Server结构的系统,Docker的守护进程运行在主机上。通过Socket从客户端访问(与mysql的类似)
1、Docker有着比虚拟机更少的抽象层
2、Docker利用的是宿主机的内核,VM需要的Guest OS
#查看版本信息
docker version
#查看docker信息,包括镜像和容器数量
docker info
#帮助
docker 命令 --help
帮助文档的地址:https://docs.docker.com/reference/
[root@zyyy ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
hello-world latest feb5d9fea6a5 7 months ago 13.3kB
#解释
REPOSITORY 镜像的仓库源
TAG 镜像的标签
IMAGE ID 镜像的ID
CREATED 镜像的创建时间
SIZE 镜像的大小
# images可选项
-a, --all 列出所有镜像
-q, --quiet 只显示镜像ID
[root@zyyy ~]# docker search mysql
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
mysql MySQL is a widely used, open-source relation… 12510 [OK]
mariadb MariaDB Server is a high performing open sou… 4813 [OK]
mysql/mysql-server Optimized MySQL Server Docker images. Create… 925 [OK]
percona Percona Server is a fork of the MySQL relati… 575 [OK]
.... ..... .... ....
#可选项
Options:
-f, --filter filter 根据设置条件搜索镜像 例如 --filter=STARS=3000 搜索出的镜像就是STARS大于3000的
--format string 按模板打印结果
--limit int 最大搜索数为25
--no-trunc 不截断分隔
#1、不指定版本直接拉取镜像
[root@zyyy ~]# docker pull mysql
Using default tag: latest #如果不指定版本默认为最新版本
latest: Pulling from library/mysql
72a69066d2fe: Pull complete #分层下载 docker image的核心 联合文件系统
93619dbc5b36: Pull complete
99da31dd6142: Pull complete
626033c43d70: Pull complete
37d5d7efb64e: Pull complete
ac563158d721: Pull complete
d2ba16033dad: Pull complete
688ba7d5c01a: Pull complete
00e060b6d11d: Pull complete
1c04857f594f: Pull complete
4d7cfa90e6ea: Pull complete
e0431212d27d: Pull complete
Digest: sha256:e9027fe4d91c0153429607251656806cc784e914937271037f7738bd5b8e7709 #防伪签名
Status: Downloaded newer image for mysql:latest
docker.io/library/mysql:latest #真实地址
# 等价
# docker pull mysql = docker.io/library/mysql:latest
#2、指定版本拉取镜像
[root@zyyy ~]# docker pull mysql:5.7
5.7: Pulling from library/mysql
72a69066d2fe: Already exists #沿用已经下载过的文件
93619dbc5b36: Already exists
99da31dd6142: Already exists
626033c43d70: Already exists
37d5d7efb64e: Already exists
ac563158d721: Already exists
d2ba16033dad: Already exists
0ceb82207cd7: Pull complete
37f2405cae96: Pull complete
e2482e017e53: Pull complete
70deed891d42: Pull complete
Digest: sha256:f2ad209efe9c67104167fc609cca6973c8422939491c9345270175a300419f94
Status: Downloaded newer image for mysql:5.7
docker.io/library/mysql:5.7
#可选项
Options:
-a, --all-tags Download all tagged images in the repository
--disable-content-trust Skip image verification (default true)
--platform string Set platform if server is multi-platform capable
-q, --quiet Suppress verbose output
注意:指定版本时一定要对应Docker hub上的版本
Docker hub:https://hub.docker.com/_/mysql
#可以通过ID 或者 名称来删除镜像
[root@zyyy ~]# docker rmi -f c20987f18b13
#删除多个容器
[root@zyyy ~]# docker rmi -f 容器id 容器id 容器id
#删除全部的容器
[root@zyyy ~]# docker rmi -f $(docker images -aq)
#可选项
Options:
-f, --force 强行移除
--no-prune 不删除未标记的
说明:有了镜像才可以创建容器
#拉取一个centos镜像测试学习
docker pull centos:7
docker run [可选参数] image
#参数说明
--name-"Name" #容器名字
-d #后台方式运行
-it #使用交互的方式运行,进入容器查看
-p #指定容器的端口 例如 -p 8080 也可以跟主机映射 -p 8080:8080
-p ip:主机端口:容器端口
-p 主机端口:容器端口(常用)
-p 容器端口
-P(大写) # 随机指定端口
启动centos镜像
[root@zyyy ~]# docker run -it centos /bin/bash
[root@30eb8e22d983 /]# ls
bin dev etc home lib lib64 lost+found media mnt opt proc root run sbin srv sys tmp usr var
#从容器退到主机
[root@30eb8e22d983 /]# exit
exit
#容器不停止退出(快捷键)
Ctrl + p + Q
#正在运行的容器
[root@zyyy ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
#曾经运行过的容器
[root@zyyy ~]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
30eb8e22d983 centos "/bin/bash" 4 minutes ago Exited (0) About a minute ago bold_mendel
1c1f9a1df416 feb5d9fea6a5 "/hello" 5 hours ago Exited (0) 5 hours ago silly_babbage
#常用参数
-a #列出当前正在运行的容器,以及历史容器
-n=? #显示最近创建的容器 例子:-n=1
-q #只显示容器的编号
#删除指定的容器 不能删除正在运行的容器 如果要强行删除 加上-f
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
[root@zyyy ~]# docker run -d centos
8de16c8388cbcaebf74523ed21ae55884f0f4021f9119a4b32f197979beea1ec
注意:
docker容器使用后台运行时,必须要有一个前台进程,docker发现没有前台进程在使用时,会自动停止
#当运行docker ps时会发现后台启动的centos停止了
[root@zyyy ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
#加上tail 必须跟参数
[root@zyyy ~]# docker logs -f -t --tail 10 21e41be18871
#常见参数
Options:
--details 显示提供给日志的额外详细信息
-f, --follow 输出
--since string 显示时间戳
-n, --tail number 显示行数
-t, --timestamps 显示时间
--until string 显示时间戳之前的日志
[root@zyyy ~]# docker top 21e41be18871
UID PID PPID C STIME TTY TIME CMD
root 3034 3015 0 16:29 pts/0 00:00:00 /bin/bash
[root@zyyy ~]# docker inspect 21e41be18871
#参数
Options:
-f, --format string 使用给定的Go模板格式化输出
-s, --size 如果类型是容器,则显示总文件大小
--type string 返回指定类型的JSON
我们的容器通常都是以后台的方式运行,需要进入容器
#进入容器开启一个新的终端,可以在里面操作(常用)
[root@zyyy ~]# docker exec -it 21e41be18871 /bin/bash
[root@21e41be18871 /]#
#进入容器正在执行的终端,不会有新的进程
[root@zyyy ~]# docker attach 21e41be18871
[root@21e41be18871 /]#
[root@zyyy ~]# docker cp 21e41be18871:/test.java /home
[root@zyyy ~]# cd /home/
[root@zyyy home]# ls
test.java
g 返回指定类型的JSON
### 3.4.5、进入当前正在运行的容器
> 我们的容器通常都是以后台的方式运行,需要进入容器
- **方式一 、docker exec -it 容器ID** **bashShell**
```shell
#进入容器开启一个新的终端,可以在里面操作(常用)
[root@zyyy ~]# docker exec -it 21e41be18871 /bin/bash
[root@21e41be18871 /]#
#进入容器正在执行的终端,不会有新的进程
[root@zyyy ~]# docker attach 21e41be18871
[root@21e41be18871 /]#
[root@zyyy ~]# docker cp 21e41be18871:/test.java /home
[root@zyyy ~]# cd /home/
[root@zyyy home]# ls
test.java
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。