nginx_docker-swag/root/etc/cont-init.d/02_set-timezone.sh
2021-02-15 20:33:26 -05:00

9 lines
191 B
Bash

#!/usr/bin/with-contenv bash
echo -e "Setting time sone:\\n\
TIME ZONE=${TZ}\\n\
"
TZ=${TZ:-"UTC"}
echo "${TZ}" > /etc/timezone
rm -f /etc/localtime
dpkg-reconfigure -f noninteractive tzdata