nginx_docker-swag/root/etc/cont-init.d/02-set-timezone.sh
2021-02-13 15:25:43 -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