attach Attach to a running container #在当前shell下attach连接指定运行的镜像
build Build an image from a Dockerfile #通过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 #创建一个新的容器,同 run 但不启动
diff Inspect changes to files or directories on a container's filesystem #检查docker容器的变化
events Get real time events from the server #从docker服务上获取容器实时事件exec Run a commandin a running container #在已存在运行的容器上运行命令export Export a container's filesystem as a tar archive #导出容器的内容作为一个tar归档文件[对应import]history Show the history of an image #显示历史的镜像
images List images #列出系统当前的镜像import Import the contents from a tarball to create a filesystem image #从tar包中的内容创建一个新的文件镜像[对应export]
info Display system-wide information #显示系统信息
inspect Return low-level information on Docker objects #查看容器详细信息kill Kill one or more running containers #kill指定docker容器 (停止运行)
load Load an image from a tar archive or STDIN #从一个tar包中加载一个镜像[对应save]
login Log in to a Docker registry #登录到Docker注册表logout Log out from a Docker registry #从当前docker registry 退出
logs Fetch the logs of a container #输出当前容器的日志信息
port List port mappings or a specific mapping for the container #查看映射端口对应的容器内部源端口
pause Pause all processes within one or more containers #暂停容器ps List containers #列出容器
pull Pull an image or a repository from a registry #从docker镜像源服务器中拉取指定镜像
push Push an image or a repository to a registry #推送指定镜像或者库镜像至docker源服务器
restart Restart one or more containers #重启运行的容器rm Remove one or more containers #删除一个或多个容器
rmi Remove one or more images #删除一个或多个镜像[容器未使用该容器才可以删除,否则需要删除相关容器才可继续或-f强制删除]
run Run a commandin a new container #创建一个新的容器并运行一个命令
save Save one or more images to a tar archive (streamed to STDOUT by default)#保存一个镜像为一个tar包[对应load]
search Search the Docker Hub for images #在 docker Hub 中搜索镜像
start Start one or more stopped containers #运行一个或多个暂停的容器
stats Display a live stream of container(s) resource usage statistics #查看容器资源CPU实时使用率
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 #取消暂停容器
version Show the Docker version information #查看docker版本号wait Block until one or more containers stop, then print their exit codes #截取容器停止时的退出状态值