当前位置:   article > 正文

centos 7 使用yum进行安装docker及docker的使用_centos yum docker

centos yum docker

一、 centos 7 使用yum进行安装docker及docker的使用

1、添加docker-ce源信息

wget -O /etc/yum.repos.d/docker-ce.repo  https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo

2、修改docker-ce源

sed -i 's@download.docker.com@mirrors.tuna.tsinghua.edu.cn/docker-ce@g' /etc/yum.repos.d/docker-ce.repo

3、更新并安装docker-ce

  1. yum makecache fast
  2. yum install -y docker-ce #默认安装最新版本

4、安装指定版本的docker

yum list docker-ce.x86_64 --showduplicates | sort -r    #查看有哪些版本

5、配置加速器(提高下载和访问速度)

  1. mkdir -p /etc/docker
  2. tee /etc/docker/daemon.json <<-'EOF'
  3. > {
  4. > "registry-mirrors":["https://rvq9mjyt.mirror.aliyuncs.com"] #阿里
  5. > }
  6. > EOF
  7. systemctl daemon-reload #重新加载守护进程
  8. systemctl start docker

6、测试

  1. docker pull busybox #拉取镜像试试
  2. docker images #查看镜像的指令
  3. REPOSITORY TAG IMAGE ID CREATED SIZE
  4. busybox latest beae173ccac6 2 years ago 1.24MB

二、使用docker镜像

1、获取镜像

  1. docker pull ubuntu:18.04 #获取镜像
  2. 18.04: Pulling from library/ubuntu
  3. 284055322776: Pull complete
  4. Digest: sha256:0fedbd5bd9fb72089c7bbca476949e10593cebed9b1fb9edf5b79dbbacddd7d6
  5. Status: Downloaded newer image for ubuntu:18.04
  6. docker.io/library/ubuntu:18.04

2、使用镜像创建一个容器

  1. [root@centos7-node1 ~]# docker run -it ubuntu:18.04 bash #创建容器
  2. root@cb10b3ab86e8:/# echo hello world #执行打印hello world 命令
  3. hello world
  4. root@cb10b3ab86e8:/#
  5. docker images #查看镜像的信息

3、给镜像改名字

  1. docker tag busybox:latest mybusybox:latest
  2. docker images #两个镜像的id是一样的,说明是同一个
  3. REPOSITORY TAG IMAGE ID CREATED SIZE
  4. busybox latest beae173ccac6 2 years ago 1.24MB
  5. mybusybox latest beae173ccac6 2 years ago 1.24MB
  6. ubuntu 18.04 5a214d77f5d7 2 years ago 63.1MB

4、查看镜像的详细信息及镜像的历史

  1. docker inspect busybox
  2. docker history busybox:latest

5、搜索官方提供的nginx关键字的镜像

  1. docker search --filter=is-official=true nginx #official显示ok表示为官方
  2. NAME DESCRIPTION STARS OFFICIAL
  3. nginx Official build of Nginx. 19668 [OK]
  4. unit Official build of NGINX Unit: Universal Web … 24 [OK]

6、删除镜像

  1. docker images #查看有哪些镜像
  2. REPOSITORY TAG IMAGE ID CREATED SIZE
  3. busybox latest beae173ccac6 2 years ago 1.24MB
  4. mybusybox latest beae173ccac6 2 years ago 1.24MB
  5. ubuntu 18.04 5a214d77f5d7 2 years ago 63.1MB
  6. docker rmi mybusybox:latest #删除镜像(也可以使用id来删除)
  7. docker images #再次查看镜像
  8. REPOSITORY TAG IMAGE ID CREATED SIZE
  9. busybox latest beae173ccac6 2 years ago 1.24MB
  10. ubuntu 18.04 5a214d77f5d7 2 years ago 63.1MB

7、正在运行的镜像容器不能被删除(或者加上-f参数强制删除  不推荐

  1. docker images
  2. REPOSITORY TAG IMAGE ID CREATED SIZE
  3. busybox latest beae173ccac6 2 years ago 1.24MB
  4. ubuntu 18.04 5a214d77f5d7 2 years ago 63.1MB
  5. [root@centos7-node1 ~]# docker run busybox echo 'I am run' #运行容器
  6. I am run
  7. [root@centos7-node1 ~]# docker rmi beae173ccac6 #使用id删除容器
  8. Error response from daemon: conflict: unable to delete beae173ccac6 (must be forced) - image is being used by stopped container f5bb159b992b #容器正在运行删除不了
  9. docker ps -a #列出当前系统中所有的容器
  10. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
  11. f5bb159b992b busybox "echo 'I am run'" 4 minutes ago Exited (0) 4 minutes ago sweet_sammet
  12. cb10b3ab86e8 ubuntu:18.04 "bash" 28 minutes ago Exited (0) 26 minutes ago vigorous_bardeen
  13. #正确删除步骤,先删除容器,再删除镜像
  14. [root@centos7-node1 ~]# docker rm f5bb159b992b
  15. f5bb159b992b
  16. [root@centos7-node1 ~]# docker rmi beae173ccac6
  17. Untagged: busybox:latest
  18. Untagged: busybox@sha256:5acba83a746c7608ed544dc1533b87c737a0b0fb730301639a0179f9344b1678
  19. Deleted: sha256:beae173ccac6ad749f76713cf4440fe3d21d1043fe616dfbe30775815d1d0f6a
  20. Deleted: sha256:01fd6df81c8ec7dd24bbbd72342671f41813f992999a3471b9d9cbc44ad88374

8、基于已有容器创建

  1. 启动一个镜像,并在其中进行修改操作。如:创建一个test文件,之后退出,代码如下:
  2. [root@centos7-node1 ~]# docker run -it ubuntu:18.04 bash
  3. root@d6e2e1fc9c71:/# touch test
  4. root@d6e2e1fc9c71:/# exit
  5. exit
  6. [root@centos7-node1 ~]# docker ps -a
  7. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
  8. d6e2e1fc9c71 ubuntu:18.04 "bash" 33 seconds ago Exited (0) 16 seconds ago peaceful_sanderson
  9. cb10b3ab86e8 ubuntu:18.04 "bash" 2 hours ago Exited (0) 2 hours ago vigorous_bardeen
  10. [root@centos7-node1 ~]# docker commit -m 'add a new file' -a 'kongd <kongd@123.com>' d6e2e1fc9c71
  11. sha256:feb22f3bf11c382fb6d7a2b2d597e40dfd4411fc17ecfda25afebe68b65d4e04
  12. [root@centos7-node1 ~]# docker images
  13. REPOSITORY TAG IMAGE ID CREATED SIZE
  14. <none> <none> feb22f3bf11c 25 seconds ago 63.1MB
  15. busybox latest beae173ccac6 2 years ago 1.24MB
  16. ubuntu 18.04 5a214d77f5d7 2 years ago 63.1MB

9、基于本地模版导入

  1. wget -c http://download.openvz.org/template/precreated/centos-7-x86_64-minimal.tar.gz
  2. #使用wget命令从指定的URL下载centos-7-x86_64-minimal.tar.gz文件。
  3. docker images #列出当前系统中所有的Docker镜像,包括已经创建的和未命名的镜像。
  4. REPOSITORY TAG IMAGE ID CREATED SIZE
  5. <none> <none> feb22f3bf11c 20 minutes ago 63.1MB
  6. busybox latest beae173ccac6 2 years ago 1.24MB
  7. ubuntu 18.04 5a214d77f5d7 2 years ago 63.1MB
  8. cat centos-7-x86_64-minimal.tar.gz | docker import - centos7:latest
  9. #将下载的centos-7-x86_64-minimal.tar.gz文件导入为一个Docker镜像,并命名为centos7:latest。
  10. sha256:f22433edd7e345dee4db09f2a3af3611689d2df1baf9df053c2df76fb7433494
  11. docker images #再次列出当前系统中所有的Docker镜像,查看新导入的centos7:latest镜像是否成功创建
  12. REPOSITORY TAG IMAGE ID CREATED SIZE
  13. centos7 latest f22433edd7e3 5 seconds ago 435MB
  14. <none> <none> feb22f3bf11c 21 minutes ago 63.1MB
  15. busybox latest beae173ccac6 2 years ago 1.24MB
  16. ubuntu 18.04 5a214d77f5d7 2 years ago 63.1MB
  17. docker run -it --rm centos7:latest bash
  18. #以交互式模式在新创建的centos7:latest镜像上运行一个bash shell。
  19. [root@ca13d1c5eeb9 /]# ls
  20. bin boot dev etc fastboot home lib lib64 lost+found media mnt opt proc root run sbin srv sys tmp usr var
  21. [root@ca13d1c5eeb9 /]# exit
  22. exit
  23. docker ps -a #列出所有容器的信息,包括已经停止的容器。
  24. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
  25. d6e2e1fc9c71 ubuntu:18.04 "bash" 25 minutes ago Exited (0) 25 minutes ago peaceful_sanderson
  26. cb10b3ab86e8 ubuntu:18.04 "bash" 2 hours ago Exited (0) 2 hours ago vigorous_bardeen
  27. [root@centos7-node1 ~]# docker rm -f `docker ps -aq`
  28. #强制删除所有已经停止的Docker容器。这里使用了反引号来获取docker ps -aq的输出,并将其作为docker rm -f的参数来删除这些容器。
  29. d6e2e1fc9c71
  30. cb10b3ab86e8
  31. [root@centos7-node1 ~]# docker images
  32. #最后再次列出当前系统中所有的Docker镜像,查看镜像和容器的最新状态。
  33. REPOSITORY TAG IMAGE ID CREATED SIZE
  34. centos7 latest f22433edd7e3 4 minutes ago 435MB
  35. <none> <none> feb22f3bf11c 25 minutes ago 63.1MB
  36. busybox latest beae173ccac6 2 years ago 1.24MB
  37. ubuntu 18.04 5a214d77f5d7 2 years ago 63.1MB

10、存出和载入

  1. docker images
  2. REPOSITORY TAG IMAGE ID CREATED SIZE
  3. centos7 latest f22433edd7e3 24 minutes ago 435MB
  4. <none> <none> feb22f3bf11c 45 minutes ago 63.1MB
  5. busybox latest beae173ccac6 2 years ago 1.24MB
  6. ubuntu 18.04 5a214d77f5d7 2 years ago 63.1MB
  7. docker save -o centos7.tar centos7:latest
  8. #将名为centos7:latest的Docker镜像保存为一个tar文件centos7.tar
  9. ls
  10. anaconda-ks.cfg centos7.tar centos-7-x86_64-minimal.tar.gz
  11. scp centos7.tar 192.168.80.172:~ #将文件传输到192.168.80.172主机上面
  12. [root@centos7-node2 ~]# docker images
  13. REPOSITORY TAG IMAGE ID CREATED SIZE
  14. [root@centos7-node2 ~]# ls
  15. anaconda-ks.cfg centos7.tar
  16. [root@centos7-node2 ~]# docker load -i centos7.tar
  17. #加载一个Docker镜像文件centos7.tar到Docker中
  18. 788edba9eaa8: Loading layer [==================================================>] 446.1MB/446.1MB
  19. Loaded image: centos7:latest
  20. [root@centos7-node2 ~]# docker images
  21. REPOSITORY TAG IMAGE ID CREATED SIZE
  22. centos7 latest f22433edd7e3 29 minutes ago 435MB

11、上传镜像

  1. #登陆阿里云docker registry
  2. docker login --username=用户名 registry-cn-hangzhou.aliyuncs.com
  3. #从registry中拉取镜像
  4. docker pull registry-cn-hangzhou.aliyun.com/用户名/镜像版本
  5. #将镜像推送到registry
  6. dokcer login --usernmae=用户名 registry.cn-hangzhou.aliyuncs.com
  7. docker tag [Imageld] registry.cn-hangzhou.aliyuncs.com/用户名/镜像版本
  8. docker push registry.cn-hangzhou.aliyun.com/用户名/镜像版本

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/947967
推荐阅读
相关标签
  

闽ICP备14008679号