docker入门(2)--docker常用命令

运行一个容器

docker container run alpine echo "hello world"
命令解析如下:

docker入门(2)--docker常用命令_第1张图片
docker命令解析

docker container run -d --name nginx-test -p 8080:80 nginx:alpine
解释如下:
-d : 以守护进程方式运行
--name : 给这个容器取一个自定义名称
-p : 主机端口与容器内的服务端口之间的映射

查看容器

查看当前正在运行的容器
docker container ls
输出如下:


查看所有容器
docker container ls -a
输出如下:

查看容器ID

docker container ls -q
docker container ls -a -q

停止、启动容器

可以根据容器名称,也可以根据容器ID来进行操作
docker container stop nginx-test
docker container start nginx-test

移除容器

docker container rm nginx-test
根据ID,移除容器
docker container rm -f $(docker container ls -a -q)
-f : 代表强制移除

审查容器

docker container inspect nginx-test
返回一个json对象,里面的数据称为“元数据”,在你需要核实一个容器的相关配置的时候,非常有用,例如可以查看内部的网络设置挂载情况 等。
也可以筛选数据,类似命令如下:
docker container inspect -f "{{json .State}}" nginx-test
-f参数用来定义过滤器,过滤器使用go模板语法。

进入容器

进入一个不在运行中的容器,可以简单的进入查看这个容器的一些配置。
docker container run -it alpine /bin/sh

进入一个运行中的容器,可以进去进行一些debug工作。
docker container exec -it nginx-test /bin/sh

关于到底在容器内执行/bin/sh还是/bin/bash,参考如下:

Docker containers were first developed on Linux for Linux. It is thus natural that the primary command-line tool used to work with Docker, also called a shell, is a Unix shell; remember, Linux derives from Unix. Most developers use the Bash shell. On some lightweight Linux distributions, such as Alpine, Bash is not installed and consequently one has to use the simpler Bourne shell, just called sh. Whenever we are working in a Linux environment, such as inside a container or on a Linux VM, we will use either /bin/bash or /bin/sh, depending on their availability.

依附到一个容器

docker container attach nginx-test
依附到一个容器,可以获取这个容器的终端上所有标准输入、输出、错误 信息。
依附到一个容器后,可以按Ctrl+C 退出,但是这样会同时结束该运行中的容器。

获取容器日志信息

查看容器内的日志,可以知道容器的启动信息,也可以收集日志,进行分析。
常用命令:
docker container logs nginx-test
查看最近5条日志信息
docker container logs --tail 5 nginx-test
持续刷新日志信息
docker container logs -f nginx-test

docker有多种日志机制来帮助我们获取正在运行的容器的信息,这些机制统称为logging drivers,选用哪一种logging drivers可以在docker的守护进程级别进行配置。默认使用json-file这种方式。
默认所有的日志信息都会存在一个json格式的文件中,这个文件可能由于设置原因,会被轮转切割,而docker container logs命令只是获取当前活动的这一份json文件所存储的内容,类似linux中的logrotate。
docker默认支持以下几种driver类型:

driver description
none No log output for the specific container is produced.
json-file This is the default driver. The logging information is stored in files,formatted as JSON.
journald If the journals daemon is running on the host machine, we can use this driver. It forwards logging to the journald daemon.
syslog If the syslog daemon is running on the host machine, we can configure this driver, which will forward the log messages to the syslog daemon.
gelf When using this driver, log messages are written to a Graylog Extended Log Format (GELF) endpoint. Popular examples of such endpoints are Graylog and Logstash.
fluentd Assuming that the fluentd daemon is installed on the host system, this driver writes log messages to it.

tips:请注意,docker container logs命令只能适用于json-file和journald这两种driver。

启动容器时,指定logging driver

docker container run --name test -it \
--log-driver none alpine \
sh -c 'for N in 1 2 3; do echo "Hello $N"; done'

修改docker服务默认logging driver

编辑/etc/docker/daemon.json文件,新增如下内容即可:

{
"Log-driver": "json-log",
"log-opts": {
"max-size": "10m",
"max-file": 3
    }
}

配置解释:使用json-file格式的driver,单个文件达到10M时,就会进行轮转切割,最多保存3份。
重加载配置文件,而不用重启服务:
kill -SIGHUP $(pidof dockerd)
执行下面命令也可以:
systemctl reload docker.service

你可能感兴趣的:(docker入门(2)--docker常用命令)