通过 docker 获取系统运行情况的实用命令
Dockers
docker ps 命令与 ps 类似,展示运行的“进程”,此处的 ps 是以容器为单位。
docker ps 命令所展示的默认列为:
CONTAINER ID | IMAGE | COMMAND | CREATED | STATUS | PORTS | NAMES
CONTAINER ID 是一个很重要的参数,代表容器的表示,也是使用 docker exec 等命令的主要参数,例如下面用法。
$ docker exec -it <CONTAINER ID> bash
docker ps 命令的参数的列比较多,比如 NAMES 通常比较长,如果增加--no-trunc 参数,命令会更长。
docker ps 命令可以使用--format 参数,自定义其输出的格式,比如。
$ docker ps -a --format "{{.ID}}\t{{.Image}}"
$ docker ps -a --format "table {{.Image}}\t{{.ID}}\t{{.Ports}}\t{{.Status}}"
上面命令中,table 表示表头,在没有表头的情况下,更适合于用命令行逐行进行处理。
通过--format 参数,可以指定输出制定的列,避免信息爆炸。另一个用途是,只输出一列的时候,也适用于作为另外一个命令行工具的参数。
例如 docker top 命令,列出所有容器的进程。
$ docker ps -a --format "{{.ID}}" | xargs -n1 docker top
下面命令实现了,查找某个 IMAGE 所运行容器中的 top 进程。
$ docker ps -a --format "table {{.ID}}\t{{.Image}}" | grep <Image> | xargs docker top
结合 shell 的工具,上述命令更加通用的格式为:
$ docker ps -a --format "table {{.Image}}\t{{.ID}}" | grep <Image>| tr -s ' ' | cut -f2 -d' ' | xargs docker top
可以充分利用 tr 和 cut 的列截取功能,将任何一列作为下面命令的输入。
docker ps 命令的-f(--filter)也可以起到过滤的作用,甚至可以指定通配符。
$ docker ps -f name=<name>
docker stats 命令可以展示容器运行的统计信息,这个命令的输入是容器的 name。
$ docker stats --no-stream <name>
通过结合 docker ps 命令和 docker stats 命令,可以将命令作为中间的传输过程,并不需要先得到,再输入。
$ docker stats --no-stream $(docker ps --format={{.Names}})
$ docker stats --no-stream `docker ps --format={{.Names}}`
上面也是一个不需要变动参数的命令,它可以分 docker 列出所有的进程。
如果将 docker 的各个命令与 shell 充分结合,就可以得到更多的功能,例如,列出所有的进程。
$ for i in docker ps |grep Up|awk '{print $1}';do echo ID=$i && docker top $i; done
docker inspect 命令则更加强大,可以按照 json 格式列出容器里面信息。
在通常情况下,可以先执行一次 docker inspect 命令,得到 json 的格式,再结合--format 使用,得到指定的列。
$docker inspect --format "{{.Name}} {{.Config.Hostname}}" <container>
如果没有 --format 命令,通常可以使用如下简单粗暴的方式。
$ docker inspect <container>| grep '\"Id\"\|\"Hostname\"'
docker 命令本身包含了本地镜像、镜像仓库、容器运行时几个方面的功能,与运行时相关的查看功能,主要是 ps、inspect、logs、events、stats 等几个。
$ docker --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
--help Print usage
-H, --host list Daemon socket(s) to connect to (default [])
-l, --log-level string Set the logging level ("debug", "info", "warn", "error", "fatal") (default "info")
--tls Use TLS; implied by --tlsverify
--tlscacert string Trust certs signed only by this CA (default "/root/.docker/ca.pem")
--tlscert string Path to TLS certificate file (default "/root/.docker/cert.pem")
--tlskey string Path to TLS key file (default "/root/.docker/key.pem")
--tlsverify Use TLS and verify the remote
-v, --version Print version information and quit
Management Commands:
container Manage containers
image Manage images
network Manage networks
node Manage Swarm nodes
plugin Manage plugins
secret Manage Docker secrets
service Manage services
stack Manage Docker stacks
swarm Manage Swarm
system Manage Docker
volume Manage volumes
Commands:
attach Attach 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 TARGETIMAGE that refers to SOURCEIMAGE
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.
评论