Sub Commands: # 构建指定服务对应的镜像,其等价于 docker build build Build or rebuild services # 上传或下拉指定服务所对应的镜像,其等价于 docker pull/push pull Pull service images push Push service images # 构建指定服务对应的容器实例,其等价于 docker create create Create services # 运行指定服务,其等价于调用 docker run run Run a one-off command # 依次完成构建镜像、数据卷、网络,创建容器实例,运行等操作,从而启动整个项目 up Create and start containers # 与 up 命令相对,删除 up 命令所创建的一切 down Stop and remove containers, networks, images, and volumes # 在指定服务的容器实例中执行指定命令,其等价于 docker exec exec Execute a commandin a running container # 设置某服务的容器实例数量 scale Set number of containers for a service # 杀死/暂停/取消暂停/启动/停止/重启 特定服务的容器实例,其等价于 docker ... kill Kill containers pause Pause services unpause Unpause services start Start services stop Stop services restart Restart services # 验证、查看指定的 compose 文件 config Validate and view the Compose file # 以 JSON 格式输出某服务的容器实例中的事件信息 events Receive real time events from containers # 显示特定服务的日志输出 logs View output from containers # 查看指定服务的容器实例的端口映射信息 port Print the public port for a port binding # 罗列所涉容器 ps List containers # 显示服务的进程信息 top Display the running processes