nginx_docker-swag/root/etc/cont-init.d/02-set_timezone.sh
2021-02-15 20:09:01 -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