Created
December 21, 2018 23:15
-
-
Save anderson-mota/b7200d43ac9289f47450e221d893b68e to your computer and use it in GitHub Desktop.
Localtime/Timezone on Docer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: | |
environment: | |
TZ: "America/Sao_Paulo" | |
command: > | |
sh -c "ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && | |
echo $TZ > /etc/timezone" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ENV TZ=America/Sao_Paulo | |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment