docker(base command) docker 基础命令
Command(命令) | Description(描述) | 中文 |
---|---|---|
docker attach | Attach local standard input, output, and error streams to a running container | 将本地标准输入,输出和错误流附加到正在运行的容器 |
docker build | Build an image from a Dockerfile | 从Dockerfile构建映像 |
docker builder | Manage builds | 管理构建 |
docker checkpoint | Manage checkpoints | 管理检查站 |
docker commit | Create a new image from a container’s changes | 根据容器的更改创建新图像 |
docker config | Manage Docker configs | 管理Docker配置 |
docker container | Manage containers | 管理容器 |
docker cp | Copy files/folders between a container and the local filesystem | 在容器和本地文件系统之间复制文件/文件夹 |
docker create | Create a new container | 创建一个新容器 |
docker deploy | Deploy a new stack or update an existing stack | 部署新堆栈或更新现有堆栈 |
docker diff | Inspect changes to files or directories on a container’s filesystem | 检查容器文件系统上文件或目录的更改 |
docker engine | Manage the docker engine | 管理docker引擎 |
docker events | Get real time events from the server | 从服务器获取实时事件 |
docker exec | Run a command in a running container | 在正在运行的容器中运行命令 |
docker export | Export a container’s filesystem as a tar archive | 将容器的文件系统导出为tar存档 |
docker history | Show the history of an image | 显示镜像的历史记录 |
docker image | Manage images | 管理镜像 |
docker images | List images | 列出镜像 |
docker import | Import the contents from a tarball to create a filesystem image | 从tarball导入内容以创建文件系统映像 |
docker info | Display system-wide information | 显示系统范围的信息 |
docker inspect | Return low-level information on Docker objects | 返回有关Docker对象的低级信息 |
docker kill | Kill one or more running containers | 杀死一个或多个正在运行的容器 |
docker load | Load an image from a tar archive or STDIN | 从tar存档或STDIN加载图像 |
docker login | Log in to a Docker registry | 登录Docker注册表 |
docker logout | Log out from a Docker registry | 从Docker注册表注销 |
docker logs | Fetch the logs of a container | 获取容器的日志 |
docker manifest | Manage Docker image manifests and manifest lists | 管理Docker图像清单和清单列表 |
docker network | Manage networks | 管理网络 |
docker node | Manage Swarm nodes | 管理Swarm节点 |
docker pause | Pause all processes within one or more containers | 暂停一个或多个容器中的所有进程 |
docker plugin | Manage plugins | 管理插件 |
docker port | List port mappings or a specific mapping for the container | 列出端口映射或容器的特定映射 |
docker ps | List containers | 列出容器 |
docker pull | Pull an image or a repository from a registry | 从注册表中提取图像或存储库 |
docker push | Push an image or a repository to a registry | 将图像或存储库推送到注册表 |
docker rename | Rename a container | 重命名容器 |
docker restart | Restart one or more containers | 重新启动一个或多个容器 |
docker rm | Remove one or more containers | 删除一个或多个容器 |
docker rmi | Remove one or more images | 删除一个或多个图像 |
docker run | Run a command in a new container | 在新容器中运行命令 |
docker save | Save one or more images to a tar archive (streamed to STDOUT by default) | 将一个或多个图像保存到tar存档(默认情况下流式传输到STDOUT) |
docker search | Search the Docker Hub for images | 在Docker Hub中搜索镜像 |
docker secret | Manage Docker secrets | 管理Docker的秘密 |
docker service | Manage services | 管理服务 |
docker stack | Manage Docker stacks | 管理Docker堆栈 |
docker start | Start one or more stopped containers | 启动一个或多个已停止的容器 |
docker stats | Display a live stream of container(s) resource usage statistics | 显示容器资源使用情况统计信息的实时流 |
docker stop | Stop one or more running containers | 停止一个或多个正在运行的容器 |
docker swarm | Manage Swarm | 管理Swarm |
docker system | Manage Docker | 管理Docker |
docker tag | Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE | 创建一个引用SOURCE_IMAGE的标记TARGET_IMAGE |
docker top | Display the running processes of a container | 显示容器的运行进程 |
docker trust | Manage trust on Docker images | 管理对Docker镜像的信任 |
docker unpause | Unpause all processes within one or more containers | 取消暂停一个或多个容器中的所有进程 |
docker update | Update configuration of one or more containers | 更新一个或多个容器的配置 |
docker version | Show the Docker version information | 显示Docker版本信息 |
docker volume | Manage volumes | 管理数量 |
docker wait | Block until one or more containers stop, then print their exit codes | 阻止,直到一个或多个容器停止,然后打印退出代码 |
网友评论