Skip to content

Instantly share code, notes, and snippets.

@anderson-mota
Created December 21, 2018 23:15
Show Gist options
  • Save anderson-mota/b7200d43ac9289f47450e221d893b68e to your computer and use it in GitHub Desktop.
Save anderson-mota/b7200d43ac9289f47450e221d893b68e to your computer and use it in GitHub Desktop.
Localtime/Timezone on Docer
service:
environment:
TZ: "America/Sao_Paulo"
command: >
sh -c "ln -snf /usr/share/zoneinfo/$TZ /etc/localtime &&
echo $TZ > /etc/timezone"
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