Docker常用命令

Docker常用命令

Docker是原生基于Linux的软件,因此它提供了在客户端 - 服务器环境中进行交互和工作的命令。在这里,我们列出了一些重要和常用的Docker命令

1. 查看Docker版本

$ docker version

它用于查看Docker的客户端和服务器版本。

2. 从Docker文件构建Docker映像

$ docker build -t image-name docker-file-location

-t:它用于指定使用提供的名称来标记Docker映像。

3. 运行Docker映像

$ docker run -d image-name

-d:用于创建守护程序进程。

4. 查看可用的Docker映像

$ docker images

5. 查看最近的运行容器

$ docker ps -l

-l:它用于显示最新的可用容器。

6. 查看所有正在运行的容器

$ docker ps -a

-a:它用于显示所有可用的容器。

7. 停止运行容器

$ docker stop container_id

container_id:由Docker分配给容器的Id。

8. 删除一个映像

$ docker rmi image-name

9. 删除所有映像

$ docker rmi $(docker images -q)

10. 强制删除所有映像

$ docker rmi -r $(docker images -q)

$ docker rmi -r docker images -q

-r:用于强制删除映像。

11. 删除所有容器

$ docker rm $(docker ps -a -q)

$ docker rm docker ps -a -q

12. 进入Docker容器

$ docker exec -it container-id bash
13. docker history name/ID

$ docker history $*( ID name)
14. 限制查询
docker search --limit 10 redis
#################################################################################################################################
[root@localhost ~]# docker -h
Flag shorthand -h has been deprecated, please use --help

Usage: docker COMMAND

A self-sufficient runtime for containers

Options:
--config string Location of client config files (default "/root/.docker") #客户端配置文件的位置

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

--help Print usage #查看帮助信息

-H, --host list Daemon socket(s) to connect to (default []) #守护进程的套接字(Socket)连接

-l, --log-level string Set the logging level ("debug", "info", "warn", "error", "fatal") (default "info") #设置日志级别

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

Commands:
attach Attach 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 on a container's filesystem #查看docker容器变化

events Get real time events from the server #从docker服务获取容器实时事件

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 #导入一个镜像

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 #输出当前容器日志信息

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 #从docker镜像源服务器拉取指定镜像或者库镜像

push Push an image or a repository to a registry #推送指定镜像或者库镜像至docker源服务器

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包(对应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 #统计容器使用资源

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 #截取容器停止时的退出状态值

Run 'docker COMMAND --help' for more information on a command. #运行docker命令在帮助可以获取更多信息

posted @ 2020-04-15 15:49  WangXiaopang  阅读(122)  评论(0编辑  收藏  举报