fasten-onprem/docker/rootfs/etc/cont-init.d/01-timezone

8 lines
144 B
Plaintext

#!/usr/bin/with-contenv bash
if [ -n "${TZ}" ]
then
ln -snf "/usr/share/zoneinfo/${TZ}" /etc/localtime
echo "${TZ}" > /etc/timezone
fi