基本操作命令

  1. Commands:
  2. attach Attach to a running container
  3. # 当前 shell 下 attach 连接指定运行镜像
  4. build Build an image from a Dockerfile # 通过 Dockerfile 定制镜像
  5. commit Create a new image from a container's changes # 提交当前容器为新的镜像
  6. docker commit -m “message”-a “author_name”docker-id new-docker-name:tag
  7. -c,--change=[] 提交时执行dockerfile指令
  8. -p ,--pause=ture:提交时暂停容器运行
  9. cp Copy files/folders from the containers filesystem to the host path
  10. # 从容器中拷贝指定文件或者目录到宿主机中
  11. create Create a new container
  12. # 创建一个新的容器,同 run,但不启动容器
  13. diff Inspect changes on a container's filesystem # 查看 docker 容器变化
  14. events Get real time events from the server # 从 docker 服务获取容器实时事件
  15. exec Run a command in an existing container # 在已存在的容器上运行命令
  16. export Stream the contents of a container as a tar archive
  17. # 导出容器的内容流作为一个 tar 归档文件[对应 import ]
  18. history Show the history of an image # 展示一个镜像形成历史
  19. images List images # 列出系统当前镜像
  20. import Create a new filesystem image from the contents of a tarball
  21. # 从tar包中的内容创建一个新的文件系统映像[对应 export]
  22. info Display system-wide information # 显示系统相关信息
  23. inspect Return low-level information on a container # 查看容器详细信息
  24. docker inspect -f {{“id”}} centos 取容器中的值
  25. kill Kill a running container # kill 指定 docker 容器
  26. load Load an image from a tar archive # 从一个 tar 包中加载一个镜像[对应 save]
  27. docker load -i kubernetes-dashboard.tar
  28. login Register or Login to the docker registry server
  29. # 注册或者登陆一个 docker 源服务器
  30. logout Log out from a Docker registry server # 从当前 Docker registry 退出
  31. logs Fetch the logs of a container # 输出当前容器日志信息
  32. port Lookup the public-facing port which is NAT-ed to PRIVATE_PORT
  33. # 查看映射端口对应的容器内部源端口
  34. pause Pause all processes within a container # 暂停容器
  35. ps List containers # 列出容器列表
  36. --no-trunc 查看完整的容器值
  37. pull Pull an image or a repository from the docker registry server
  38. # 从docker镜像源服务器拉取指定镜像或者库镜像
  39. push Push an image or a repository to the docker registry server
  40. # 推送指定镜像或者库镜像至docker源服务器
  41. restart Restart a running container # 重启运行的容器
  42. rm Remove one or more containers # 移除一个或者多个容器
  43. rmi Remove one or more images
  44. # 移除一个或多个镜像[无容器使用该镜像才可删除,否则需删除相关容器才可继续或 -f 强制删除]
  45. run Run a command in a new container # 创建一个新的容器并运行一个命令
  46. -t - 分配一个(伪)tty (link is external)
  47. -i - 交互模式 (so we can interact with it)
  48. ubuntu:14.04 - 使用 ubuntu 基础镜像 14.04
  49. /bin/bash - 运行命令 bash shell
  50. save Save an image to a tar archive # 保存一个镜像为一个 tar 包[对应 load]
  51. docker save o docker_image.tar image_name
  52. search Search for an image on the Docker Hub # 在 docker hub 中搜索镜像
  53. --filter=is-automated=true|false:仅显示自动创建的镜像,默认为否。
  54. --filter=stars=x :仅显示评价为指定星级以上的镜像,默认为0,即输出所有镜像。
  55. --no-trunc 输出信息不截断,默认为否。
  56. start Start a stopped containers # 启动容器
  57. stop Stop a running containers # 停止容器
  58. tag Tag an image into a repository # 给源中镜像打标签
  59. top Lookup the running processes of a container # 查看容器中运行的进程信息
  60. unpause Unpause a paused container # 取消暂停容器
  61. version Show the docker version information # 查看 docker 版本号
  62. wait Block until a container stops, then print its exit code
  63. # 截取容器停止时的退出状态值
  64. Run 'docker COMMAND --help' for more information on a command.

查看镜像仓库中应用的tag

通过docker search centos,查看到了centos的镜像,但是不知道仓库中这个镜像有多少可用的tag。通过一下的命令可以查看到。

  1. [admin@controller-server ~]$ curl https://registry.hub.docker.com/v1/repositories/centos/tags| tr -d '[\[\]" ]' | tr '}' '\n'| awk -F: -v image='centos' '{if(NR!=NF && $3 != ""){printf("%s:%s\n",image,$3)}}'
  2. % Total % Received % Xferd Average Speed Time Time Time Current
  3. Dload Upload Total Spent Left Speed
  4. 100 1745 0 1745 0 0 1669 0 --:--:-- 0:00:01 --:--:-- 1669
  5. centos:latest
  6. centos:5
  7. centos:6
  8. centos:6.10
  9. centos:6.6
  10. centos:6.7
  11. centos:6.8
  12. centos:6.9
  13. centos:7
  14. centos:7.0.1406
  15. centos:7.1.1503
  16. centos:7.2.1511
  17. centos:7.3.1611
  18. centos:7.4.1708
  19. centos:7.5.1804
  20. centos:7.6.1810
  21. centos:7.7.1908
  22. centos:7.8.2003
  23. centos:7.9.2009
  24. centos:8
  25. centos:8.1.1911
  26. centos:8.2.2004
  27. centos:8.3.2011
  28. centos:8.4.2105
  29. centos:centos5
  30. centos:centos5.11
  31. centos:centos6
  32. centos:centos6.10
  33. centos:centos6.6
  34. centos:centos6.7
  35. centos:centos6.8
  36. centos:centos6.9
  37. centos:centos7
  38. centos:centos7.0.1406
  39. centos:centos7.1.1503
  40. centos:centos7.2.1511
  41. centos:centos7.3.1611
  42. centos:centos7.4.1708
  43. centos:centos7.5.1804
  44. centos:centos7.6.1810
  45. centos:centos7.7.1908
  46. centos:centos7.8.2003
  47. centos:centos7.9.2009
  48. centos:centos8
  49. centos:centos8.1.1911
  50. centos:centos8.2.2004
  51. centos:centos8.3.2011
  52. centos:centos8.4.2105

命令语法使用参考

https://cloud.tencent.com/developer/article/1896354