This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# Docker 命令查询
## 基本语法
Docker 命令有两大类,客户端命令和服务端命令。前者是主要的操作接口,后者用来启动 Docker Daemon。
* 客户端命令:基本命令格式为 `docker [OPTIONS] COMMAND [arg...]`;
* 服务端命令:基本命令格式为 `dockerd [OPTIONS]`。
可以通过 `man docker` 或 `docker help` 来查看这些命令。
接下来的小节对这两个命令进行介绍。