The timezone in your run logs may not match your local timezone. For example, inside of your RStudio notebook, you may notice that it's running on Coordinated Universal Time (UTC) whereas your runs dashboard shows time in Central Time Zone (CT):
Figure 1: Inside of your Rstudio notebook
Figure 2: Runs dashboard
In order to synchronize this, you will need to add the following lines to the Dockerfile instructions for your environment:
#change time zone
env TZ=America/Chicago
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
This particular example sets the timezone to Central Standard Time on the executor, which will be reflected in your RStudio workspace. Here’s the full list of locales.
If you have any questions, please contact us at support@dominodatalab.com
Comments
0 comments
Article is closed for comments.