Implementation of docker view container log command

Implementation of docker view container log command

Why should we read the log? For example, if the container fails to start but no prompt is given, we need to check why.

View the logs:

Command format:

$ docker logs [OPTIONS] CONTAINER
 Options:
    --details Display more information -f, --follow Track real-time logs --since string Display logs after a certain timestamp, or relative time, such as 42m (i.e. 42 minutes)
    --tail string How many lines of log are displayed from the end of the log, the default is all
  -t, --timestamps Display timestamps --until string Display logs before a certain timestamp, or relative time, such as 42m (i.e. 42 minutes)

example:

View the logs after the specified time and only display the last 100 lines:

$ docker logs -f -t --since="2020-02-08" --tail=50 CONTAINER_ID

View the logs for the last 30 minutes:

$ docker logs --since 30m CONTAINER_ID

View the logs after a certain time:

$ docker logs -t --since="2020-02-08T13:23:37" CONTAINER_ID

View logs for a certain period of time:

$ docker logs -t --since="2020-02-08T13:23:37" --until "2020-02-09T12:23:37" CONTAINER_ID

This is the end of this article about the implementation of docker view container log command. For more relevant docker view container log command content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Docker container log analysis
  • How to view and clean up Docker container logs (tested and effective)

<<:  HTML table tag tutorial (21): row border color attribute BORDERCOLOR

>>:  Native JS to implement drag position preview

Recommend

Proxy realizes the principle of two-way binding of Vue3 data

Table of contents 1. Advantages of proxy vs. Obje...

MySQL 8.X installation tutorial under Windows

I had been using MySQL 5.7 before, but because My...

Tips for optimizing MySQL SQL statements

When faced with a SQL statement that is not optim...

Tomcat CentOS installation process diagram

Tomcat CentOS Installation This installation tuto...

Detailed explanation of Vue's methods and properties

Vue methods and properties 1. Methods Usage 1 met...

Detailed explanation of webpack-dev-server core concepts and cases

webpack-dev-server core concepts Webpack's Co...

Analysis of the method of setting up scheduled tasks in mysql

This article uses an example to describe how to s...

N ways to achieve two-column layout with CSS

1. What is a two-column layout? There are two typ...

Coexistence of python2 and python3 under centos7 system

The first step is to check the version number and...

How to change the system language of centos7 to simplified Chinese

illustrate When you install the system yourself, ...

Mycli is a must-have tool for MySQL command line enthusiasts

mycli MyCLI is a command line interface for MySQL...

Tomcat8 uses cronolog to split Catalina.Out logs

background If the catalina.out log file generated...