Solve the problem of 8 hours difference between docker container and host machine

Solve the problem of 8 hours difference between docker container and host machine

When using docker-compose for deployment, the output logs and related events are verified and output, resulting in an 8-hour difference between the events and reality.

Troubleshooting:

1. Check the host time:

# View the time date
Wed Sep 29 11:12:44 CST 2021
# Check the time zone date -R
Wed, 29 Sep 2021 11:13:34 +0800

2. Enter the container to view the time

# View all containers docker ps -a
# Enter the container docker eec -it [container ID] /bin/bash
# View the time date

At this time, the host time is the same as the docker container time. After searching Baidu, I finally realized that it was a timezone problem.

Linux time:

Container time:

Cause: The host machine has a time zone set, but the Docker container has not, resulting in an 8-hour time difference between the two.

CST should refer to (China Shanghai Time, Eastern Time Zone 8)
UTC should refer to (Coordinated Universal Time, standard time)
Therefore, the difference between these two times should actually be 8 hours.

Therefore, the time zones of the two must be unified

Solution:

1. Docker-compose configuration volume mount

volumes:
      - /usr/share/zoneinfo/Asia/Shanghai:/etc/localtime

2.Dockerfile runs the command and outputs the corresponding time zone to timezone

RUN echo "Asia/shanghai" > /etc/timezone
 
RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

3. Delete the container and rerun

#Delete docker rm [container ID]
# Start docker-compose -f [file name] up -d

Summary: The 2-hour time difference is caused by the /etc/timezone problem in the container. You can set the corresponding time zone.

This is the end of this article about the 8-hour difference between docker container and host machine. For more relevant content about docker container and host machine, 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 enables seamless calling of shell commands between container and host
  • Solution to the Docker container not having permission to write to the host directory
  • Solution to the Docker container being unable to access the host port
  • Execute the shell or program inside the Docker container on the host
  • Call and execute host docker operations in docker container
  • 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

<<:  Introduction to new ECMAscript object features

>>:  Remove the a label and button and add the background image dotted line/shadow perfect solution

Recommend

5 issues you should pay attention to when making a web page

1. Color matching problem <br />A web page s...

JavaScript to implement the aircraft war game

This article shares with you how to use canvas an...

MySQL 8.0.20 installation and configuration detailed tutorial

This article shares with you a detailed tutorial ...

Detailed steps to build a file server in Windows Server 2012

The file server is one of the most commonly used ...

Solution to the ineffectiveness of flex layout width in css3

Two-column layout is often used in projects. Ther...

What is JavaScript anti-shake and throttling

Table of contents 1. Function debounce 1. What is...

How to use dynamic parameters and calculated properties in Vue

1. Dynamic parameters Starting from 2.6.0, you ca...

Vue+Openlayer uses modify to modify the complete code of the element

Vue+Openlayer uses modify to modify elements. The...

Introduction to the use of MySQL source command

Table of contents Thoughts triggered by an online...

Example code for implementing a hollow mask layer with CSS

Contents of this article: Page hollow mask layer,...

How to change the website accessed by http to https in nginx

Table of contents 1. Background 2. Prerequisites ...

Docker practice: Python application containerization

1. Introduction Containers use a sandbox mechanis...

XHTML Getting Started Tutorial: XHTML Hyperlinks

It is no exaggeration to say that hyperlinks conne...

Summary of @ usage in CSS (with examples and explanations)

An at-rule is a declaration that provides instruc...