【Docker系列】从头学起 Docker——docker --help命令详解

简介: 【Docker系列】从头学起 Docker——docker --help命令详解

前言

当你在docker容器时相信docker --help一定可以帮助到你。


一、学会使用 docker --help 命令


即使忘记相关命令,也可以通过 docker --help 命令,人机交互,获取到相关命令使用信息。以下便是执行 docker --help 的相关提示。


[root@docker ~]# docker --help



// 用法:docker [选项] 命令

Usage: docker [OPTIONS] COMMAND


A self-sufficient runtime for containers


Options[选项]:


–config string Location of client config files (default “/root/.docker”) //客户端配置文件的位置

-c, --context string Name of the context to use to connect to the daemon (overrides DOCKER_HOST env var and default context set with “docker

context use”)

-D, --debug Enable debug mode //启用调试模式

-H, --host list Daemon socket(s) to connect to //连接的守护进程套接字

-l, --log-level string Set the logging level (“debug”|“info”|“warn”|“error”|“fatal”) (default “info”) //设置日志记录级别

–tls Use TLS; implied by --tlsverify //使用TLS;隐含 ——tlsverify

–tlscacert string Trust certs signed only by this CA (default “/root/.docker/ca.pem”) //仅由此CA签署的信任证书(默认 “/root/.docker/ca.pem”)

–tlscert string Path to TLS certificate file (default “/root/.docker/cert.pem”) // TLS证书文件的路径

–tlskey string Path to TLS key file (default “/root/.docker/key.pem”) // TLS密钥文件的路径

–tlsverify Use TLS and verify the remote //使用TLS且远程验证

-v, --version Print version information and quit // 打印版本信息并退出


Management Commands:

builder Manage builds // 管理生成

config Manage Docker configs // 管理 docker 配置

container Manage containers // 管理容器

context Manage contexts // 管理上下文

engine Manage the docker engine // 管理docker引擎

image Manage images // 管理镜像

network Manage networks // 管理网络

node Manage Swarm nodes // 管理集群节点

plugin Manage plugins // 管理插件

secret Manage Docker secrets // 管理 docker 密钥

service Manage services // 管理 docker 服务

stack Manage Docker stacks // 管理 docker 堆栈

swarm Manage Swarm // 管理集群

system Manage Docker // 系统管理员管理 docker

trust Manage trust on Docker images // 管理对 docker 镜像的信任

volume Manage volumes // 管理卷


Commands:

attach Attach local standard input, output, and error streams to a running container

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 /创建一个容器

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 //将容器的文件系统导出为tar存档文件

history Show the history of an image // 显示镜像的历史

images List images //显示镜像列表

import Import the contents from a tarball to create a filesystem image //从tarball导入内容以创建文件系统镜像

info Display system-wide information // 显示整个系统的信息

inspect Return low-level information on Docker objects // 返回Docker对象的底层信息

kill Kill one or more running containers // 杀死一个或多个正在运行的容器

load Load an image from a tar archive or STDIN // 从tar存档或STDIN加载镜像

login Log in to a Docker registry // 登录到Docker注册表

logout Log out from a Docker registry // 从Docker注册表注销

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) // 将一个或多个镜像 保存到tar存档

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 // 显示容器资源使用统计数据的实时流

stop Stop one or more running containers //停止一个或多个正在运行的容器

tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE // 创建一个引用SOURCE_IMAGE的TARGET_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 //显示Docker版本信息

wait Block until one or more containers stop, then print their exit codes // 阻塞,直到一个或多个容器停止,然后打印它们的退出代码


Run ‘docker COMMAND --help’ for more information on a command. //运行“docker COMMAND——help”获取命令的更多信息。


二、docker --help进阶方法


例如:我们想要查询 docker pull 命令的用法,可以执行 docker pull --help 。当然你可以尝试看看 docker run --help 的效果。


[root@docker ~]# docker pull --help


// 用法:docker pull [选项] 名称[:标签|摘要] 其中,中括号是可选项

Usage: docker pull [OPTIONS] NAME[:TAG|@DIGEST]

// 从注册表中提取映像或存储库

Pull an image or a repository from a registry

//选项:

Options:

-a, --all-tags Download all tagged images in the repository // 下载存储库中所有标记的镜像

–disable-content-trust Skip image verification (default true)// 跳过图像验证(默认 true)

-q, --quiet Suppress verbose output // 禁止详细输出息

// 通过 docker pull --help 命令,我们知道选项有3个,这3个选项可以组合使用。

// 根据这些信息,我们可以知晓 docker pull 命令的用法

例如:docker pull -q redis:last // 拉取redis最新标签的镜像,禁止详细输出

//你也可以试一下其他命令的效果,多点尝试,更好的理解命令的用法。


总结

我们想记住这些命令作用和效果,还是离不开大量的练习。忘记命令了,不妨试一下 docker --help ,这样更有利于学习和记忆,更深入地了解 docker 命令的使用方法。


相关文章
|
24天前
|
安全 Docker 容器
|
24天前
|
网络安全 数据安全/隐私保护 Docker
|
23天前
|
存储 监控 安全
|
2月前
|
Linux Docker 容器
Docker操作 :容器命令
Docker操作 (四)
|
23天前
|
存储 关系型数据库 MySQL
|
1月前
|
网络协议 Docker 容器
docker pull命令拉取镜像失败的解决方案
docker pull命令拉取镜像失败的解决方案
767 1
|
1月前
|
安全 网络安全 开发者
Docker学习笔记(一):Docker命令总结
本文介绍了Docker的基本概念、优点以及常用命令。Docker是一个开源的应用容器引擎,它通过容器打包应用程序及其依赖项,实现快速部署和迁移。主要优点包括轻量级、可移植性、易于管理、安全性和开源性。文章还区分了镜像和容器的概念,并提供了构建镜像、查看容器、运行容器、停止和删除容器等常用Docker命令的示例。
129 0
|
1月前
|
Linux 网络安全 Docker
安装后无法使用 Docker 命令
【10月更文挑战第3天】
173 2
|
1月前
|
安全 Shell Linux
docker进入容器命令
docker进入容器命令
|
1月前
|
运维 数据库 开发者
docker回顾--docker compose详细解释,安装,与常用命令
docker回顾--docker compose详细解释,安装,与常用命令
115 1