Detailed explanation of where Docker saves log files

Detailed explanation of where Docker saves log files

Debugging most Linux programs usually involves examining log files, which can be a complex process. However, when running in a containerized environment under Docker, you need to use more specific tools to debug your application in production.

Where are the logs stored?

The simple answer is that Docker stores container logs in its primary storage location, /var/lib/docker/. Each container has a log specific to its ID (the full ID, not the shortened one that's usually shown), and you can access it like this:

/var/lib/docker/containers/ID/ID-json.log

That's where they are stored, but since they are in JSON format they are not easy to read, and having to use the full container ID is annoying. Docker provides a built-in command to view them:

docker logs -f e4bd48ef3103

Here, the -f flag will keep the prompt open and "watch" for any new entries in the file. You can also use --tail to tail the file, or use --timestamps to show log times, or use --until and --since to filter based on time.

If you use Docker Compose, you can easily view all logs using the log command within it:

docker-compose logs

One thing you'll notice, however, is that STDOUT and STDERR, which are useful for a lot of things, only show console output for the entry point specified by "CMD" in the Docker file. Many applications have their own dedicated logging systems, which typically log to /var/log/nginx/access.log. Such logs can still be accessed from the host side via Docker.

View logs from an application inside a container

Depending on the container, this may not be necessary. For example, the default NGINX container is set up to send its Docker logs to STDOUT to simplify log inspection. It does this using a /dev/stdout symlink to the log file, you could set up something similar for your container.

RUN ln -sf /dev/stdout /var/log/nginx/access.log 
&& ln -sf /dev/stderr /var/log/nginx/error.log

However, if you want to view a specific file inside the container, you can do so. Docker provides the exec -it command which allows you to run any command within any running Docker process. Using it, you can tail log files inside a Docker container:

docker exec -it e4bd48ef3103 tail -f log.txt

Because this allows you to run any command, you can use journalctl or any other debugging strategy you want, as long as you start it as docker exec -it ./bin/bash . You can even run if you want to jump in and poke around.

A more permanent solution that is more suitable for hosting services is to use Docker volume mounts. You can bind-mount a directory like /var/log/nginx to a volume visible to the host. First, create a new volume:

docker volume create nginx-logs

And run the container --mount with the following command:

docker run -d \
--name devtest \
--mount source=nginx-logs,target=/var/log/nginx \
nginx:latest

If you use Docker Compose, the process can be automated:

version: "3.0"
services:
  web:
    image: nginx:latest
    ports:
      - "80:80"
    volumes:
      - nginx-logs:/var/log/nginx/
volumes:
  nginx-logs:

This way, any log aggregation service on the host can ingest the log files directly.

View Docker daemon logs

If you want to view specific logs for the entire Docker service on your server, rather than any particular containerized application, you need to view the journalctl logs:

sudo journalctl -fu docker.service

This is where it is stored on most systems, but it is located differently on some systems:

  • Amazon Linux: /var/log/docker
  • CentOS/RHEL: /var/log/messages | grep docker
  • Apple: ~/Library/Containers/com.docker.docker/Data/log/vm/dockerd.log
  • Windows: AppData\Roaming\Docker\log\vm\dockerd.log

This is the end of this article about where Docker saves log files. For more information about Docker saving log files, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to view and clean up Docker container logs (tested and effective)
  • How to view Docker container application logs
  • Solution to the Chinese garbled characters problem in Docker container logs
  • Detailed explanation of log processing of Docker containers
  • How to deal with too many Docker logs causing the disk to fill up
  • Detailed explanation of the idea of ​​rolling nginx logs in docker
  • Example of using Docker to build an ELK log system
  • Solve the problem of docker log mounting
  • Docker container log analysis

<<:  How to add a pop-up bottom action button for element-ui's Select and Cascader

>>:  CSS3 uses var() and calc() functions to achieve animation effects

Recommend

Canvas draws scratch card effect

This article shares the specific code for drawing...

MySQL foreign key constraint disable and enable commands

Disabling and enabling MySQL foreign key constrai...

MySQL 8.0.18 deployment and installation tutorial under Windows 7

1. Preliminary preparation (windows7+mysql-8.0.18...

Detailed explanation of Grid layout and Flex layout of display in CSS3

Gird layout has some similarities with Flex layou...

How to test network speed with JavaScript

Table of contents Preface Summary of the principl...

Detailed explanation of mysql trigger example

Table of contents What is a trigger Create a trig...

jQuery plugin to implement minesweeper game (2)

This article shares the second article of using j...

vue $set implements assignment of values ​​to array collection objects

Vue $set array collection object assignment In th...

How to handle super large form examples with Vue+ElementUI

Recently, due to business adjustments in the comp...

Example code for implementing a QR code scanning box with CSS

We usually have a scanning box when we open the c...

Detailed explanation of JavaScript function this pointing problem

Table of contents 1. The direction of this in the...

Example of implementing load balancing with Nginx+SpringBoot

Introduction to Load Balancing Before introducing...

Summary of MySQL slow log practice

Slow log query function The main function of slow...

CSS style does not work (the most complete solution summary in history)

When we write pages, we sometimes find that the C...