Docker CE的命令

本文主要是关于Docker CE 17.12.1版本的部分命令解释,
由于本人好久没有用过Docker了,看一下官方给出的命令的解释也好回忆一下命令的用法,
本文没有加入个人理解,纯粹机翻。

通过docker -h命令显示如下

Flag shorthand -h has been deprecated, please use --help

Usage:  docker COMMAND

A self-sufficient runtime for containers

Options:
      --config string      Location of client config files (default "/root/.docker")
  -D, --debug              Enable debug mode
  -H, --host list          Daemon socket(s) to connect to
  -l, --log-level string   Set the logging level ("debug"|"info"|"warn"|"error"|"fatal") (default "info")
      --tls                Use TLS; implied by --tlsverify
      --tlscacert string   Trust certs signed only by this CA (default "/root/.docker/ca.pem")
      --tlscert string     Path to TLS certificate file (default "/root/.docker/cert.pem")
      --tlskey string      Path to TLS key file (default "/root/.docker/key.pem")
      --tlsverify          Use TLS and verify the remote
  -v, --version            Print version information and quit

Management Commands:
  config      Manage Docker configs
  container   Manage containers
  image       Manage images
  network     Manage networks
  node        Manage Swarm nodes
  plugin      Manage plugins
  secret      Manage Docker secrets
  service     Manage services
  stack       Manage Docker stacks
  swarm       Manage Swarm
  system      Manage Docker
  trust       Manage trust on Docker images (experimental)
  volume      Manage volumes

Commands:
  attach      Attach local standard input, output, and error streams to a running container
  build       Build an image from a Dockerfile
  commit      Create a new image from a container's changes
  cp          Copy files/folders between a container and the local filesystem
  create      Create a new container
  diff        Inspect changes to files or directories on a container's filesystem
  events      Get real time events from the server
  exec        Run a command in a running container
  export      Export a container's filesystem as a tar archive
  history     Show the history of an image
  images      List images
  import      Import the contents from a tarball to create a filesystem image
  info        Display system-wide information
  inspect     Return low-level information on Docker objects
  kill        Kill one or more running containers
  load        Load an image from a tar archive or STDIN
  login       Log in to a Docker registry
  logout      Log out from a Docker registry
  logs        Fetch the logs of a container
  pause       Pause all processes within one or more containers
  port        List port mappings or a specific mapping for the container
  ps          List containers
  pull        Pull an image or a repository from a registry
  push        Push an image or a repository to a registry
  rename      Rename a container
  restart     Restart one or more containers
  rm          Remove one or more containers
  rmi         Remove one or more images
  run         Run a command in a new container
  save        Save one or more images to a tar archive (streamed to STDOUT by default)
  search      Search the Docker Hub for images
  start       Start one or more stopped containers
  stats       Display a live stream of container(s) resource usage statistics
  stop        Stop one or more running containers
  tag         Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
  top         Display the running processes of a container
  unpause     Unpause all processes within one or more containers
  update      Update configuration of one or more containers
  version     Show the Docker version information
  wait        Block until one or more containers stop, then print their exit codes

Run 'docker COMMAND --help' for more information on a command.

谷歌翻译一下,如下

标记速记-h已被弃用,请使用--help
(好吧好吧,认了认了,以后用docker --help)
用法:docker COMMAND

容器的自给运行时

选项:
      --config string      客户端配置文件的位置(默认为"/root/.docker")
  -D, --debug              启用调试模式
  -H, --host list          要连接到的守护程序套接字
  -l, --log-level string   设置日志级别 ("debug"|"info"|"warn"|"error"|"fatal") (default "info")
      --tls                使用TLS; implied by --tlsverify  TLS是docker的加密通讯
      --tlscacert string   仅由此CA签名的信任证书 (默认为 "/root/.docker/ca.pem")
      --tlscert string     TLS证书文件的路径 (默认为 "/root/.docker/cert.pem")
      --tlskey string      TLS密钥文件的路径 (默认为 "/root/.docker/key.pem")
      --tlsverify          使用TLS并验证远程
  -v, --version            打印版本信息并退出

管理命令:
  config      管理Docker配置
  container   管理容器
  image       管理图像
  network     管理网络
  node        管理Swarm节点
  plugin      管理插件
  secret      管理Docker机密
  service     管理服务
  stack       管理Docker堆栈
  swarm       管理Swarm
  system      管理Docker
  trust       管理Docker镜像上的信任(实验性)
  volume      管理卷

命令:
  attach      附加将本地标准输入,输出和错误流附加到正在运行的容器
  build       构建从Dockerfile构建图像
  commit      提交从容器的更改中创建一个新图像
  cp          cp复制容器和本地文件系统之间的文件/文件夹
  create      创建一个新的容器
  diff        diff检查对容器文件系统上文件或目录的更改
  events      事件从服务器获取实时事件
  exec        exec在正在运行的容器中运行命令
  export      导出将容器的文件系统导出为tar存档
  history     历史显示图像的历史
  images      图像列出图像
  import      导入从tarball中导入内容以创建文件系统映像
  info        info显示系统范围的信息
  inspect     检查返回Docker对象的底层信息
  kill        杀死一个或多个正在运行的容器
  load        加载从tar归档或STDIN加载图像
  login       登录登录到Docker注册表
  logout      注销从Docker注册表中注销
  logs        日志获取容器的日志
  pause       暂停暂停一个或多个容器内的所有进程
  port        端口列出端口映射或容器的特定映射
  ps          ps列表容器
  pull        拉从注册表中拉出图像或存储库
  push        推送图像或存储库到注册表
  rename      重命名重命名一个容器
  restart     重新启动重新启动一个或多个容器
  rm          rm移除一个或多个容器
  rmi         rmi删除一个或多个图像
  run         运行在新容器中运行命令
  save        保存将一个或多个图像保存到tar归档文件(默认流式传输到STDOUT)
  search      搜索在Docker Hub中搜索图像
  start       开始启动一个或多个停止的容器
  stats       统计信息显示容器资源使用统计信息的实时流
  stop        停止停止一个或多个运行容器
  tag         标签创建引用SOURCE_IMAGE的标签TARGET_IMAGE
  top         top显示容器的运行过程
  unpause     取消暂停取消暂停一个或多个容器内的所有进程
  update      更新更新一个或多个容器的配置
  version     版本显示Docker版本信息
  wait        等待Block,直到一个或多个容器停止,然后打印它们的退出代码

运行'docker COMMAND --help'以获取有关命令的更多信息。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容