Docker中英文命令

作者: 爱学习的蹭蹭 | 来源:发表于2019-08-23 17:32 被阅读4次

1、中英版命令参数说明

  • 在操作系统输入以下命令即可查看
docker COMMAND --help

2、英文版

命令参数 命令参数说明
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

3、中文版

命令参数 命令参数说明
attach 依附到一个正在运行的容器中;
build 从一个 Dockerfile 创建一个镜像;
commit 从一个容器的修改中创建一个新的镜像;
cp 在容器和本地宿主系统之间复制文件中;
create 创建一个新容器,但并不运行它;
diff 检查一个容器内文件系统的修改,包括修改和增加;
events 从服务端获取实时的事件;
exec 在运行的容器内执行命令;
export 导出容器内容为一个 tar 包;
history 显示一个镜像的历史信息;
images 列出存在的镜像;
import 导入一个文件(典型为 tar 包)路径或目录来创建一个本地镜像;
info 显示一些相关的系统信息;
inspect 显示一个容器的具体配置信息;
kill 关闭一个运行中的容器 (包括进程和所有相关资源);
load 从一个 tar 包中加载一个镜像;
login 注册或登录到一个 Docker 的仓库服务器;
logout 从 Docker 的仓库服务器登出;
logs 获取容器的 log 信息;
network 管理 Docker 的网络,包括查看、创建、删除、挂载、卸载等;
node 管理 swarm 集群中的节点,包括查看、更新、删除、提升/取消管理节点等;
pause 暂停一个容器中的所有进程;
port 查找一个 nat 到一个私有网口的公共口;
ps 列出主机上的容器;
pull 从一个Docker的仓库服务器下拉一个镜像或仓库;
push 将一个镜像或者仓库推送到一个 Docker 的注册服务器;
rename 重命名一个容器;
restart 重启一个运行中的容器;
rm 删除给定的若干个容器;
rmi 删除给定的若干个镜像;
run 创建一个新容器,并在其中运行给定命令;
save 保存一个镜像为 tar 包文件;
search 在 Docker index 中搜索一个镜像;
service 管理 Docker 所启动的应用服务,包括创建、更新、删除等;
start 启动一个容器;
stats 输出(一个或多个)容器的资源使用统计信息;
stop 终止一个运行中的容器;
tag 为一个镜像打标签;
top 查看一个容器中的正在运行的进程信息;
unpause 将一个容器内所有的进程从暂停状态中恢复;
update 更新指定的若干容器的配置信息;
version 输出 Docker 的版本信息;
volume 管理 Docker volume,包括查看、创建、删除等;
wait 阻塞直到一个容器终止,然后输出它的退出符。

相关文章

  • Docker中英文命令

    1、中英版命令参数说明 在操作系统输入以下命令即可查看 2、英文版 3、中文版

  • 记录一次Docker的学习

    Docker学习 Docker概述 Docker安装 Docker命令镜像命令容器命令操作命令... Docker...

  • Docker

    Docker学习目标 Docker概述 Docker安装 Docker命令镜像命令容器命令操作命令... Dock...

  • Docker命令

    Docker命令总结: 帮助命令: docker version docker info docker --hel...

  • Docker常用命令

    Docker常用命令 Docker帮助命令 docker version:查看docker版本 docker in...

  • Docker 之 HAProxy + Django + Redi

    Docker 简介 Docker子命令分类 Docker 命令结构 Docker Architecture Ins...

  • dokcer命令帮助手册

    基础命令 docker version docker help docker info 镜像命令 docker i...

  • Docker 常用命令

    Docker 常用命令 镜像命令 docker images docker search docker pull ...

  • Docker的安装及基础命令

    一、概述 1.1. 学习路径 Docker概述 Docker安装 Docker命令镜像命令容器命令操作命令... ...

  • docker 命令

    一、Docker的基础命令 二、docker网络管理相关的命令: docker run 命令参数 三、docker...

网友评论

    本文标题:Docker中英文命令

    本文链接:https://www.haomeiwen.com/subject/ebwtectx.html