How to view Docker container application logs

How to view Docker container application logs

docker attach command

docker attach [options] 容器will connect to the running container and then print out the container's standard input, output, and error stream information locally. There are three possible values ​​for options in the command: --detach-keys , --no-stdin , --sig-proxy .

This command just enters the container terminal and does not start a new process. So when you enter the container using multiple windows at the same time, all windows will be displayed synchronously. If one window is blocked, other windows cannot be operated on.

You can use ctrl+c to disconnect directly, but this will cause the container to exit and stop . If you want the container to continue running when you detach from the container terminal. You need to use the --sig-proxy parameter. For example:

$ docker attach --sig-proxy=false mytest

Note: When using docker attach to connect to the container's standard input and output, docker uses a memory buffer of approximately 1MB to maximize the throughput of your application. If this buffer fills up, the speed of output or writing will be affected. Therefore, to view the application logs, you can use the docker logs command.

docker logs command

docker logs [options] 容器Gets the container's logs.

For example, print the last 10 lines of the mytest application in the container.

$ docker logs --tail="10" mytest

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Implementation of modifying configuration files in Docker container
  • Implement dynamic management and monitoring of docker containers based on spring-boot and docker-java [with complete source code download]
  • Summary of methods for creating, listing, and deleting Docker containers on Linux
  • Detailed explanation of log processing of Docker containers
  • Detailed explanation of how to stop the Docker container from automatically exiting
  • Detailed explanation of how to solve the problem that the docker container cannot access the host machine through IP
  • How to use Docker container to access host network
  • Docker container operation instructions summary and detailed explanation

<<:  How to use http and WebSocket in CocosCreator

>>:  Several important MySQL variables

Recommend

Example of Vue transition to achieve like animation effect

Table of contents Results at a Glance Heart Effec...

Implementation of 2D and 3D transformation in CSS3

CSS3 implements 2D plane transformation and visua...

How to make your browser talk with JavaScript

Table of contents 1. The simplest example 2. Cust...

MySQL database index order by sorting detailed explanation

Table of contents The cause of the incident Anato...

MySQL 8.0.18 stable version released! Hash Join is here as expected

MySQL 8.0.18 stable version (GA) was officially r...

How to solve the problem that the project in eclipse cannot be added to tomcat

1. Right-click the project and select properties ...

A brief discussion on value transfer between Vue components (including Vuex)

Table of contents From father to son: Son to Fath...

Introduction to the use of anchors (named anchors) in HTML web pages

The following information is compiled from the Int...

MySQL master-slave replication principle and practice detailed explanation

Table of contents Introduction effect principle f...

Examples of common Nginx misconfigurations

Table of contents Missing root location Off-By-Sl...