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) 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:
|
<<: Introduction to new ECMAscript object features
>>: Remove the a label and button and add the background image dotted line/shadow perfect solution
1. Color matching problem <br />A web page s...
This article shares with you how to use canvas an...
This article shares with you a detailed tutorial ...
The file server is one of the most commonly used ...
Two-column layout is often used in projects. Ther...
Table of contents 1. Function debounce 1. What is...
1. Dynamic parameters Starting from 2.6.0, you ca...
Vue+Openlayer uses modify to modify elements. The...
Table of contents Thoughts triggered by an online...
When you learn MySQL, you will find that it comes...
Contents of this article: Page hollow mask layer,...
Table of contents 1. Background 2. Prerequisites ...
1. Introduction Containers use a sandbox mechanis...
It is no exaggeration to say that hyperlinks conne...
An at-rule is a declaration that provides instruc...